mirror of https://gitee.com/bigwinds/arangodb
69 lines
1.2 KiB
SCSS
69 lines
1.2 KiB
SCSS
// The bar on top of each page
|
|
div.headerBar {
|
|
position: relative;
|
|
margin-top: 5px;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
margin-bottom: 5px;
|
|
background-color: $c_bar_bg;
|
|
color: $c_white;
|
|
height: 36px;
|
|
font-size: 16px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
// The title of the page
|
|
|
|
div.headerBar a.arangoHeader,
|
|
.modal-header .arangoHeader {
|
|
color: $c_white;
|
|
position: relative;
|
|
top: 7px;
|
|
left: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
// The buttons on the right side
|
|
|
|
div.headerBar > div.headerButtonBar {
|
|
margin: 4px 0px;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
// Breadcrumbs on the left side
|
|
|
|
div.headerBar > div.breadcrumb {
|
|
padding-left: 5px !important;
|
|
}
|
|
|
|
// Disabled breadcrumb
|
|
div.breadcrumb a.disabledBread {
|
|
color: $c_white;
|
|
}
|
|
|
|
// Dropdown filter
|
|
div.headerBar .dropdown-menu {
|
|
@include border-radius(0px);
|
|
margin-top: 6px;
|
|
margin-right: -20px;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
border: solid 1px #686766;
|
|
}
|
|
|
|
div.headerBar .dropdown-menu .checkboxLabel {
|
|
color: white !important;
|
|
}
|
|
|
|
div.headerBar .dropdown-menu .divider {
|
|
background-color: #686755 !important;
|
|
border-bottom: 0 !important;
|
|
color: #686755 !important;
|
|
}
|
|
|
|
// arangoHeader
|
|
.arangoHeader {
|
|
font-weight: 400;
|
|
}
|
|
|