This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/themes/zuitedesk/css/tabs.css
2017-10-01 23:20:19 +02:00

59 lines
870 B
CSS

/**
* @file
* Tabs Styling.
*/
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;
}