Files
law-api/public/assets/scss/custom/structure/_topbar.scss

286 lines
4.7 KiB
SCSS

//
// _header.scss
//
#page-topbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1002;
background-color: $header-bg;
box-shadow: 0 1px 2px rgba(0,0,0,0.075);
}
.navbar-header {
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
align-items: center;
margin: 0 auto;
height: $header-height;
padding: 0 0 0 calc(#{$grid-gutter-width} / 2);
.dropdown.show {
.header-item {
background-color: $gray-100;
}
}
}
.navbar-brand-box {
padding: 0 1.5rem;
text-align: center;
width: $navbar-brand-box-width;
}
.logo {
line-height: 70px;
.logo-sm {
display: none;
}
}
.logo-light {
display: none;
}
/* Search */
.app-search {
padding: calc(#{$header-height - 38px} / 2) 0;
.form-control {
border: none;
height: 38px;
padding-right: 40px;
padding-left: 20px;
background-color: $topbar-search-bg;
box-shadow: none;
border-radius: 7px;
}
span {
position: absolute;
z-index: 10;
font-size: 16px;
line-height: 39px;
right: 13px;
top: 0;
color: $gray-600;
}
}
// Mega menu
.megamenu-list {
li{
position: relative;
padding: 5px 0px;
line-height: 1.6;
a{
color: $dropdown-color;
}
}
}
@media (max-width: 991.98px) {
.navbar-brand-box {
width: auto;
}
.logo {
span.logo-lg {
display: none;
}
span.logo-sm {
display: inline-block;
}
}
}
.page-content {
padding: calc(#{$header-height} + #{$grid-gutter-width / 2}) $grid-gutter-width $footer-height $grid-gutter-width;
}
.header-item {
height: $header-height;
box-shadow: none !important;
color: $header-item-color;
border: 0;
border-radius: 0px;
&:hover {
color: $header-item-color;
}
}
.header-profile-user {
height: 36px;
width: 36px;
background-color: $gray-300;
padding: 3px;
}
.noti-icon {
i {
font-size: 22px;
color: $header-item-color;
}
.badge {
position: absolute;
top: 12px;
left: 0;
}
}
.notification-item {
.media {
padding: 0.75rem 1rem;
&:hover {
background-color: $gray-300;
}
}
}
// Dropdown with Icons
.dropdown-icon-item {
display: block;
border-radius: 3px;
line-height: 34px;
text-align: center;
padding: 15px 0 9px;
display: block;
border: 1px solid transparent;
color: $gray-600;
img {
height: 24px;
}
span {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
&:hover {
border-color: $gray-200;
}
}
// Full Screen
.fullscreen-enable {
[data-toggle="fullscreen"] {
.mdi-fullscreen::before {
content: "\F294";
}
}
}
body[data-topbar="dark"],
body[data-topbar="colored"] {
#page-topbar {
background-color: $header-dark-bg;
}
.navbar-header {
.dropdown.show {
.header-item {
background-color: rgba($white, 0.05);
}
}
.waves-effect .waves-ripple {
background: rgba($white, 0.4);
}
}
.logo-dark {
display: none;
}
.logo-light {
display: block;
}
.header-item {
color: $header-dark-item-color;
&:hover {
color: $header-dark-item-color;
}
}
.header-profile-user {
background-color: rgba($white, 0.25);
}
.noti-icon {
i {
color: $header-dark-item-color;
}
}
.logo-dark {
display: none;
}
.logo-light {
display: block;
}
.app-search {
.form-control {
background-color: rgba($topbar-search-bg,0.07);
color: $white;
}
span,
input.form-control::-webkit-input-placeholder {
color: rgba($white,0.5);
}
}
}
body[data-topbar="colored"] {
#page-topbar{
background: $header-bg;
}
.navbar-header {
.dropdown.show {
.header-item {
background-color: rgba($white, 0.05);
}
}
.waves-effect .waves-ripple {
background: rgba($white, 0.4);
}
}
}
@media (max-width: 600px) {
.navbar-header {
.dropdown {
position: static;
.dropdown-menu {
right: 10px !important;
left: 10px !important;
}
}
}
}
@media (max-width: 380px) {
.navbar-brand-box {
display: none;
}
}