1
0
Fork 0
arangodb/js/apps/system/aardvark/frontend/scss/_headerBar.scss

138 lines
2.4 KiB
SCSS

input.search-input {
@include border-radius(0);
border: 0;
height: 18px;
line-height: 18px;
margin-top: 5px;
width: 214px;
&:focus {
@include box-shadow(0 0 10px $c-positive);
border-color: $c-positive;
outline: none;
}
}
.search-field {
@extend %pull-left;
margin-left: 15px;
}
%search-submit-icon {
@extend %clickable;
background-image: url('../img/enter_icon.png');
background-size: 14px;
height: 14px;
margin-left: -18px;
opacity: .2;
position: absolute;
width: 14px;
&:hover {
opacity: .8;
}
}
.search-submit-icon {
@extend %search-submit-icon;
margin-top: 11px;
}
.gv-search-submit-icon {
@extend %search-submit-icon;
margin-top: 6px;
}
// To be cleaned up from here on!
// The bar on top of each page
div.headerBar {
background-color: $c-bar-bg;
color: $c-white;
font-size: 16px;
height: 36px;
margin-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
position: relative;
input[type=checkbox].css-checkbox {
display: none;
& + label.css-label {
background-position: 0 0;
background-repeat: no-repeat;
cursor: pointer;
display: inline-block;
font-size: 15px;
height: 15px;
margin-top: 0;
padding-left: 20px;
vertical-align: middle;
}
}
input[type=checkbox].css-checkbox:checked + label.css-label {
background-position: 0 -15px;
}
input[type="radio"] {
display: none;
& + label span {
background: url('../img/check_radio_sheet.png') -38px top no-repeat;
cursor: pointer;
display: inline-block;
height: 19px;
margin: -1px 4px 0 0;
vertical-align: middle;
width: 19px;
}
}
input[type="radio"]:checked + label span {
background: url('../img/check_radio_sheet.png') -57px top no-repeat;
}
}
// The title of the page
div.headerBar a.arangoHeader {
color: $c-white;
font-size: 16px;
left: 5px;
position: relative;
top: 7px;
}
// The buttons on the right side
div.headerBar > div.headerButtonBar {
@extend %clear-float;
@extend %pull-right;
margin: 4px 0;
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;
}
// arangoHeader
.arangoHeader {
font-weight: 400;
}
#transparentHeader input[type=checkbox].css-checkbox {
display: none;
}