mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Commit realizando cambios en los roles de los usuarios
This commit is contained in:
245
httpdocs/themes/focus2/scss/layout/header/_header-global.scss
Normal file
245
httpdocs/themes/focus2/scss/layout/header/_header-global.scss
Normal file
@ -0,0 +1,245 @@
|
||||
/////////////////
|
||||
// Header
|
||||
/////////////////
|
||||
.header {
|
||||
// width: 100%;
|
||||
height: 5rem;
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
padding: 0rem;
|
||||
background-color: $white;
|
||||
z-index: 3;
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
||||
padding-left: 17.1875rem;
|
||||
transition: all .2s ease;
|
||||
// &::before {
|
||||
// content: "";
|
||||
// height: 168px;
|
||||
// top: 0;
|
||||
// left: 0;
|
||||
// width: 100%;
|
||||
// position: absolute;
|
||||
// z-index: 997;
|
||||
// background: rgba(116, 104, 240,0.85)
|
||||
// }
|
||||
.header-content {
|
||||
height: 100%;
|
||||
padding-left: 5.3125rem;
|
||||
padding-right: 1.875rem;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
// box-shadow: $shadow;
|
||||
// @include respond('desktop') {
|
||||
// padding-left: 15px;
|
||||
// padding-right:15px;
|
||||
// max-width: 1140px;
|
||||
// margin: 0 auto;
|
||||
// }
|
||||
// @include respond('tab-land') {
|
||||
// padding-left: 15px;
|
||||
// padding-right:15px;
|
||||
// max-width: 960px;
|
||||
// margin: 0 auto;
|
||||
// }
|
||||
// @include respond('tab-port') {
|
||||
// padding-left: 15px;
|
||||
// padding-right:15px;
|
||||
// max-width: 720px;
|
||||
// margin: 0 auto;
|
||||
// }
|
||||
// @include respond('phone-land') {
|
||||
// padding-left: 60px;
|
||||
// padding-right:15px;
|
||||
// }
|
||||
@include custommq($max: 575px) {
|
||||
padding-left: 2.375rem;
|
||||
}
|
||||
}
|
||||
.navbar {
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
.navbar-collapse {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////
|
||||
// CSS Pulse Effect
|
||||
////////////////////////
|
||||
@mixin circle($circleSize) {
|
||||
width: $circleSize;
|
||||
height: $circleSize;
|
||||
border-radius: $circleSize/2;
|
||||
}
|
||||
|
||||
|
||||
/* pulse in SVG */
|
||||
|
||||
svg.pulse-svg {
|
||||
overflow: visible;
|
||||
.first-circle {
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
-webkit-transform-origin: center center;
|
||||
transform-origin: center center;
|
||||
-webkit-animation: pulse-me 3s linear infinite;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
fill: $primary;
|
||||
}
|
||||
.second-circle {
|
||||
@extend .first-circle;
|
||||
-webkit-animation-delay: 1s;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
.third-circle {
|
||||
@extend .first-circle;
|
||||
-webkit-animation-delay: 2s;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* pulse in CSS */
|
||||
|
||||
.pulse-css {
|
||||
@include circle(1rem);
|
||||
border-radius: 3.5rem;
|
||||
height: .4rem;
|
||||
position: absolute;
|
||||
background: $primary;
|
||||
right: 5px;
|
||||
top: .6rem;
|
||||
width: .4rem;
|
||||
&:after,
|
||||
&:before {
|
||||
content: '';
|
||||
@include circle(1rem);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: -.2rem;
|
||||
background-color: $primary;
|
||||
margin: auto;
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
-webkit-transform-origin: center center;
|
||||
transform-origin: center center;
|
||||
-webkit-animation: pulse-me 3s linear infinite;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
@at-root [direction="rtl"] & {
|
||||
left: auto;
|
||||
right: -.2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes pulse-me {
|
||||
0% {
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.1;
|
||||
}
|
||||
70% {
|
||||
opacity: 0.09;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: scale(3);
|
||||
transform: scale(3);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse-me {
|
||||
0% {
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.1;
|
||||
}
|
||||
70% {
|
||||
opacity: 0.09;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: scale(3);
|
||||
transform: scale(3);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="full"],
|
||||
[data-sidebar-style="overlay"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
@include custommq($min: 1200px, $max: 1350px) {
|
||||
width: 100%;
|
||||
padding-left: 14.375rem;
|
||||
}
|
||||
@include respond('phone-land') {
|
||||
width: 100%;
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="mini"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="compact"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
padding-left: 9.375rem;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="modern"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
padding-left: 9.375rem;
|
||||
}
|
||||
}
|
||||
|
||||
[data-header-position="fixed"] {
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.content-body {
|
||||
padding-top: 7rem;
|
||||
}
|
||||
.quixnav {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="compact"][data-header-position="fixed"][data-container="boxed"][data-layout="vertical"] {
|
||||
.header {
|
||||
width: 1199px;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="modern"] {
|
||||
.header {
|
||||
.header-content {
|
||||
padding-left: 15px;
|
||||
.navbar {
|
||||
max-width: 1140px;
|
||||
margin: 0 auto;
|
||||
padding: 0 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
105
httpdocs/themes/focus2/scss/layout/header/_header-left.scss
Normal file
105
httpdocs/themes/focus2/scss/layout/header/_header-left.scss
Normal file
@ -0,0 +1,105 @@
|
||||
.header-left {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
input {
|
||||
background: $white!important;
|
||||
min-width: 300px;
|
||||
min-height: 44px;
|
||||
border-color: transparent;
|
||||
color: $dark!important;
|
||||
border-top-right-radius: 5rem;
|
||||
border-bottom-right-radius: 5rem;
|
||||
box-shadow: none;
|
||||
@include respond('desktop') {
|
||||
// margin-top: 3px;
|
||||
}
|
||||
@at-root [direction="rtl"] & {
|
||||
// border-top-left-radius: 0;
|
||||
// border-bottom-left-radius: 0;
|
||||
border-top-right-radius: .25rem;
|
||||
border-bottom-right-radius: .25rem;
|
||||
}
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active {
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
&::-webkit-input-placeholder {
|
||||
/* Edge */
|
||||
color: $dark;
|
||||
}
|
||||
&:-ms-input-placeholder {
|
||||
/* Internet Explorer */
|
||||
color: $dark;
|
||||
}
|
||||
&::placeholder {
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
// .btn {
|
||||
// border-top-left-radius: 0;
|
||||
// border-bottom-left-radius: 0;
|
||||
// height: 45px;
|
||||
// @at-root [direction="rtl"] & {
|
||||
// border-top-right-radius: 0;
|
||||
// border-bottom-right-radius: 0;
|
||||
// border-top-left-radius: .25rem;
|
||||
// border-bottom-left-radius: .25rem;
|
||||
// }
|
||||
// }
|
||||
.search_bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
.dropdown-menu {
|
||||
box-shadow: none;
|
||||
;
|
||||
}
|
||||
.search_icon {
|
||||
background: $white!important;
|
||||
height: 44px;
|
||||
padding: 5px 15px!important;
|
||||
border-top-left-radius: 5rem;
|
||||
border-bottom-left-radius: 5rem;
|
||||
i {
|
||||
font-size: 24px;
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
@include custommq($max: 575px) {
|
||||
position: static;
|
||||
.dropdown-menu {
|
||||
width: 100vw;
|
||||
left: -98px;
|
||||
@at-root [direction="rtl"] & {
|
||||
right: -98px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// .form-inline {
|
||||
// flex-flow: row nowrap;
|
||||
// }
|
||||
.dropdown-menu,
|
||||
.dropdown-menu.show {
|
||||
// box-shadow: 0px 0px 10px rgba(120, 130, 140, 0.13);
|
||||
border: 0px;
|
||||
background-color: transparent;
|
||||
border-top-right-radius: 5rem;
|
||||
border-bottom-right-radius: 5rem;
|
||||
@include custommq($min: 768px) {
|
||||
left: 40px;
|
||||
top: -4px;
|
||||
transform: translateY(50%);
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="compact"] {
|
||||
.header-left {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
184
httpdocs/themes/focus2/scss/layout/header/_header-right.scss
Normal file
184
httpdocs/themes/focus2/scss/layout/header/_header-right.scss
Normal file
@ -0,0 +1,184 @@
|
||||
.header-right {
|
||||
height: 100%;
|
||||
.nav-item {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.nav-link {
|
||||
color: $l-ctd;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
&>li {
|
||||
&:not(:first-child) {
|
||||
padding-left: 0.625rem;
|
||||
}
|
||||
}
|
||||
.notification_dropdown {
|
||||
@include respond('phone-land') {
|
||||
position: static;
|
||||
}
|
||||
.nav-link {
|
||||
position: relative;
|
||||
color: $l-ctd;
|
||||
i {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.badge {
|
||||
position: absolute;
|
||||
font-size: 0.625rem;
|
||||
border-radius: 50%;
|
||||
right: 0;
|
||||
top: 0;
|
||||
font-weight: normal;
|
||||
height: 17px;
|
||||
width: 17px;
|
||||
line-height: 6px;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
.dropdown-item {
|
||||
&:focus,
|
||||
&:active {
|
||||
a {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: $dark;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
border-color: $border;
|
||||
box-shadow: 0px 0px 10px rgba(120, 130, 140, 0.13);
|
||||
@at-root [data-theme-version="dark"] & {
|
||||
border-color: $d-border;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
.header-profile {
|
||||
&>a {
|
||||
i {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
padding: 15px 0;
|
||||
min-width: 12.5rem;
|
||||
a {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
color: $primary;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 50px;
|
||||
}
|
||||
.dropdown-toggle {
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
span {
|
||||
@include respond('phone') {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.profile_title {
|
||||
background: $primary;
|
||||
color: $white;
|
||||
padding: 10px 20px;
|
||||
h5 {
|
||||
color: $white;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
}
|
||||
// .dropdown-toggle::after{
|
||||
// display: none;
|
||||
// }
|
||||
.dropdown-item {
|
||||
padding: 5px 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.notification_dropdown {
|
||||
.dropdown-menu-right {
|
||||
min-width: 275px;
|
||||
padding: 0rem 0 1rem;
|
||||
top: 60px;
|
||||
.notification_title {
|
||||
background: $primary;
|
||||
color: $white;
|
||||
padding: 10px 20px;
|
||||
h5 {
|
||||
color: $white;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
}
|
||||
.media {
|
||||
border-bottom: 1px solid $border;
|
||||
padding: 20px 25px;
|
||||
// &:last-child{
|
||||
// border-bottom: 0px;
|
||||
// }
|
||||
@at-root [data-theme-version="dark"] & {
|
||||
border-color: $d-border;
|
||||
}
|
||||
&>span {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
border-radius: 50px;
|
||||
display: inline-block;
|
||||
padding: 7px 9px;
|
||||
margin-right: 10px;
|
||||
&.success {
|
||||
background: #DEF2DB;
|
||||
color: #2F9B1B;
|
||||
}
|
||||
&.primary {
|
||||
background: #D3E7FE;
|
||||
color: #176AD2;
|
||||
}
|
||||
&.danger {
|
||||
background: #FFE0E0;
|
||||
color: #E24747;
|
||||
}
|
||||
}
|
||||
.notify-time {
|
||||
width: 100%!important;
|
||||
margin-right: 0!important;
|
||||
color: $l-ctl;
|
||||
}
|
||||
p {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
max-width: 200px;
|
||||
margin-bottom: 0;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
.all-notification {
|
||||
display: block;
|
||||
padding: 15px 30px 0;
|
||||
// color: $dark;
|
||||
text-align: center;
|
||||
i {
|
||||
margin-left: 10px;
|
||||
;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
7
httpdocs/themes/focus2/scss/layout/header/_header.scss
Normal file
7
httpdocs/themes/focus2/scss/layout/header/_header.scss
Normal file
@ -0,0 +1,7 @@
|
||||
@import './nav-header/nav-header';
|
||||
@import './header-global';
|
||||
@import './header-left';
|
||||
@import './header-right';
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,270 @@
|
||||
[data-sidebar-style="mini"],
|
||||
[data-layout="horizontal"] {
|
||||
.nav-control {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="overlay"] {
|
||||
@include respond('phone-land') {
|
||||
.nav-header .logo-abbr {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-header-position="fixed"] {
|
||||
.nav-header {
|
||||
position: fixed;
|
||||
left: auto;
|
||||
// @include respond('big-desktop') {
|
||||
// left: 6rem;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
.nav-header {
|
||||
height: 5rem;
|
||||
width: 17.1875rem;
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: #343957;
|
||||
transition: all .2s ease;
|
||||
z-index: 4;
|
||||
// border-bottom: 1px solid $border;
|
||||
.logo-abbr {
|
||||
max-width: 30px;
|
||||
}
|
||||
.logo-compact {
|
||||
display: none;
|
||||
}
|
||||
@include respond('big-desktop') {
|
||||
left: 3.125rem;
|
||||
}
|
||||
@include custommq($min: 1200px, $max: 1350px) {
|
||||
width: 14.375rem;
|
||||
}
|
||||
.brand-logo {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
font-size: 1.125rem;
|
||||
color: $white;
|
||||
text-decoration: none;
|
||||
padding-left: 1.25rem;
|
||||
font-weight: 700;
|
||||
// &:hover {
|
||||
// color: $primary;
|
||||
// }
|
||||
[data-sidebar-style="compact"] &,
|
||||
[data-sidebar-style="mini"] & {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
@include respond('phone-land') {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
.brand-title {
|
||||
margin-left: 15px;
|
||||
max-width: 75px;
|
||||
// &::first-letter{
|
||||
// background: $white;
|
||||
// color: $primary;
|
||||
// padding: 1px 10px;
|
||||
// margin-right: 5px;
|
||||
// border-radius: 3px;
|
||||
// }
|
||||
@at-root [data-theme-version="dark"] & {
|
||||
background-position: 0 120%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include respond('phone-land') {
|
||||
.nav-header {
|
||||
width: 3.75rem;
|
||||
.brand-title {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav-control {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
right: -4.0625rem;
|
||||
text-align: center;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
z-index: 9999;
|
||||
// color: $primary;
|
||||
font-size: 1.4rem;
|
||||
// line-height: 2rem;
|
||||
padding: 2px 0.5rem 0;
|
||||
// margin-top: 5px;
|
||||
border-radius: 2px;
|
||||
@include respond('phone-land') {
|
||||
right: -3rem;
|
||||
}
|
||||
@include respond('phone') {
|
||||
right: -2.5rem;
|
||||
}
|
||||
// @include respond('desktop') {
|
||||
// right: -3.125rem;
|
||||
// }
|
||||
@include custommq($min: 1200px, $max: 1500px) {
|
||||
// right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
// Humbuger Icon
|
||||
////////////////////
|
||||
.hamburger {
|
||||
// background-color: $white;
|
||||
display: inline-block;
|
||||
left: 0px;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
-webkit-transition: all 0.3s ease-in-out 0s;
|
||||
transition: all 0.3s ease-in-out 0s;
|
||||
width: 37px;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.hamburger .line {
|
||||
background: $primary;
|
||||
display: block;
|
||||
height: 2px;
|
||||
margin-top: 6px;
|
||||
margin-bottom: 6px;
|
||||
margin-left: auto;
|
||||
// width: 22px;
|
||||
-webkit-transition: all 0.3s ease-in-out;
|
||||
transition: all 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.hamburger .line:nth-child(1) {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.hamburger .line:nth-child(2) {
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
.hamburger .line:nth-child(3) {
|
||||
width: 22px;
|
||||
}
|
||||
|
||||
.hamburger:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.hamburger:hover .line {
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
.hamburger.is-active {
|
||||
left: 60px;
|
||||
}
|
||||
*/
|
||||
|
||||
.hamburger.is-active .line:nth-child(1),
|
||||
.hamburger.is-active .line:nth-child(3) {
|
||||
width: 10px;
|
||||
height: 2px;
|
||||
}
|
||||
|
||||
.hamburger.is-active .line:nth-child(2) {
|
||||
-webkit-transform: translateX(-0px);
|
||||
transform: translateX(-0px);
|
||||
width: 22px;
|
||||
height: 2px;
|
||||
}
|
||||
|
||||
.hamburger.is-active .line:nth-child(1) {
|
||||
-webkit-transform: translateY(4px) rotate(45deg);
|
||||
transform: translateY(4px) rotate(45deg);
|
||||
}
|
||||
|
||||
.hamburger.is-active .line:nth-child(3) {
|
||||
-webkit-transform: translateY(-4px) rotate(-45deg);
|
||||
transform: translateY(-4px) rotate(-45deg);
|
||||
}
|
||||
|
||||
@media (min-width:767px) {
|
||||
[data-sidebar-style="compact"] {
|
||||
.nav-control {
|
||||
display: none;
|
||||
}
|
||||
.nav-header {
|
||||
width: 9.375rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="full"][data-layout="vertical"] {
|
||||
.menu-toggle {
|
||||
.brand-title {
|
||||
display: none;
|
||||
}
|
||||
.nav-header {
|
||||
.logo-abbr {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="full"][data-layout="horizontal"] {
|
||||
.nav-header {
|
||||
.logo-abbr {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.logo-compact {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="mini"] {
|
||||
.nav-header {
|
||||
.logo-abbr {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="compact"] {
|
||||
.nav-header {
|
||||
.brand-title {
|
||||
display: none;
|
||||
}
|
||||
.logo-compact {
|
||||
max-width: 75px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="modern"][data-layout="vertical"] {
|
||||
.nav-header {
|
||||
width: 9.375rem;
|
||||
.brand-title {
|
||||
display: none;
|
||||
}
|
||||
.logo-compact {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
@import './nav-control';
|
||||
Reference in New Issue
Block a user