Skip to content
Snippets Groups Projects
Commit 21d64cf3 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

more tweaks to prefs window-- darker tab border color and rounded tabs

parent d571c861
No related branches found
No related tags found
Loading
...@@ -521,23 +521,25 @@ div.y2 { ...@@ -521,23 +521,25 @@ div.y2 {
/* inline-block such that the label can be given dimensions */ /* inline-block such that the label can be given dimensions */
display: inline-block; display: inline-block;
/* A nice curved border around the tab */ /* A nice curved border around the tab */
border: 1px solid #ddd; border: 1px solid #bbb;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
/* the bottom border is handled by the tab content div */ /* the bottom border is handled by the tab content div */
border-bottom: 0; border-bottom: 0;
/* Padding around tab text */ /* Padding around tab text */
padding: 5px 10px; padding: 5px 10px;
/* put a small margin to the left to make the first tab clear */ /* put a small margin to the left to make the first tab clear */
margin-left: 4px; margin-left: 4px;
margin-top: 0px; margin-top: 8px;
margin-bottom: 0px; margin-bottom: 0px;
/* Set the background color to default gray (non-selected tab) */ /* Set the background color to default gray (non-selected tab) */
background-color:#e9e9e9; background-color:#ececec;
height: 5vh; height: 5vh;
} }
/* Focused tabs */ /* Focused tabs */
.prefs_tab:focus + label { .prefs_tab:focus + label {
border: 1px dashed #ddd; border: 1px dashed #bbb;
} }
/* Checked tabs must be white with the bottom border removed */ /* Checked tabs must be white with the bottom border removed */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment