Main theme for SuiteDesk
This commit is contained in:
parent
8cf3c56044
commit
42540d1310
185 changed files with 17597 additions and 0 deletions
61
themes/zuitedesk/css/tabs.css
Normal file
61
themes/zuitedesk/css/tabs.css
Normal file
|
@ -0,0 +1,61 @@
|
|||
/**
|
||||
* @file
|
||||
* Tabs Styling.
|
||||
*
|
||||
* Adds styles for the primary and secondary tabs.
|
||||
*/
|
||||
|
||||
|
||||
div.tabs {
|
||||
margin: 0;
|
||||
background: #ddd;
|
||||
}
|
||||
#main-content div.tabs + .section {
|
||||
border-top: 0;
|
||||
padding-top: 1.75em;
|
||||
}
|
||||
ul.tabs {
|
||||
margin: 0;
|
||||
padding: 6px 3px 0 12px;
|
||||
}
|
||||
ul.tabs-menu {
|
||||
padding-top: 8px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
ul.tabs li {
|
||||
display: inline;
|
||||
margin: 0 1px 0 0;
|
||||
padding: 4px 12px 2px;
|
||||
background: #aaa;
|
||||
list-style: none;
|
||||
}
|
||||
ul.tabs-menu li {
|
||||
background: #bfbfbf;
|
||||
}
|
||||
ul.tabs li:hover {
|
||||
background: #888;
|
||||
}
|
||||
ul.tabs-menu li:hover {
|
||||
background: #999;
|
||||
}
|
||||
ul.tabs li.active {
|
||||
background: #ddd;
|
||||
border-top: 8px solid #ddd;
|
||||
border-bottom: 3px solid #ddd;
|
||||
}
|
||||
ul.tabs-menu li.active {
|
||||
background: #fff;
|
||||
border-top-width: 4px;
|
||||
border-color: #fff;
|
||||
}
|
||||
ul.tabs li a {
|
||||
color: #fff;
|
||||
}
|
||||
ul.tabs li:hover a,
|
||||
ul.tabs li a:hover {
|
||||
color: #eee;
|
||||
}
|
||||
ul.tabs li.active a {
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
}
|
Reference in a new issue