first commit
This commit is contained in:
311
public/kai/build/scss/layouts-style/_enterprise.scss
Normal file
311
public/kai/build/scss/layouts-style/_enterprise.scss
Normal file
@@ -0,0 +1,311 @@
|
||||
.main-header {
|
||||
min-height: unset;
|
||||
background: unset;
|
||||
.navbar-header {
|
||||
min-height: unset;
|
||||
.navbar-line {
|
||||
.navbar-nav {
|
||||
>.nav-item {
|
||||
> .nav-link {
|
||||
min-height: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.more {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
font-size: 22px;
|
||||
padding: 0;
|
||||
}
|
||||
&[data-background-color="dark"] .page-navigation > .nav-item ul li a, &[data-background-color="dark2"] .page-navigation > .nav-item ul li a {
|
||||
color: #b9babf;
|
||||
&:before {
|
||||
background: #b9babf;
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-top, .nav-bottom {
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.main-panel {
|
||||
height: calc(100vh - 66px);
|
||||
min-height: calc(100vh - 66px);
|
||||
> .container {
|
||||
min-height: calc(100% - 76px);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin darkNavbarHeader($color){
|
||||
.page-navigation {
|
||||
background: $color !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.main-header {
|
||||
&.fixed {
|
||||
max-height: 58px !important;
|
||||
.nav-top {
|
||||
.container {
|
||||
z-index: 1000;
|
||||
}
|
||||
}
|
||||
.nav-bottom {
|
||||
transition: unset;
|
||||
opacity: 0;
|
||||
z-index: -1;
|
||||
transform: translateY(-10%);
|
||||
visibility: hidden;
|
||||
padding-top: 0 !important;
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
&.up {
|
||||
max-height: unset !important;
|
||||
.nav-top {
|
||||
box-shadow: none;
|
||||
}
|
||||
.nav-bottom {
|
||||
opacity: 1;
|
||||
animation-name: animateNavBottom;
|
||||
animation-duration: .4s;
|
||||
transform: translateY(0);
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#menuHeader {
|
||||
display: block !important;
|
||||
}
|
||||
.btn-toggle {
|
||||
display: none;
|
||||
}
|
||||
.topbar-toggler {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991.5px){
|
||||
.main-header .nav-bottom {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.page_navigation_open {
|
||||
.main-header .nav-bottom {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.topbar_open {
|
||||
#menuIconHeader {
|
||||
transform: translate3d(0, 63px, 0) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.main-header {
|
||||
min-height: 65px;
|
||||
.navbar-header {
|
||||
min-height: 65px;
|
||||
.nav-toggle {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
}
|
||||
.more {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
}
|
||||
.navbar-brand {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
.nav-controls {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
#menuHeader {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
z-index: 1200;
|
||||
left: 0 !important;
|
||||
right: 0;
|
||||
top: 0;
|
||||
margin-top: 0px;
|
||||
overflow-y: auto;
|
||||
.body-overlay {
|
||||
display: none;
|
||||
}
|
||||
.page-navigation {
|
||||
min-height: 100vh;
|
||||
width: 275px;
|
||||
max-width: calc(100% - 40px);
|
||||
padding-bottom: 60px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
display: block;
|
||||
z-index: 2001;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(-275px, 0, 0);
|
||||
-moz-transform: translate3d(-275px, 0, 0);
|
||||
-o-transform: translate3d(-275px, 0, 0);
|
||||
-ms-transform: translate3d(-275px, 0, 0);
|
||||
transform: translate3d(-275px, 0, 0) !important;
|
||||
transition: all .5s;
|
||||
background: #fff;
|
||||
.title-menu {
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
color: #fff;
|
||||
height: 56px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 20px;
|
||||
position: relative;
|
||||
font-weight: 300;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
.close-menu {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
> .nav-item{
|
||||
width: 100%;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
padding: 0;
|
||||
&:first-child > a {
|
||||
margin-left: 0;
|
||||
}
|
||||
&.active {
|
||||
&:before {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
> .nav-link {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
padding-left: 18px;
|
||||
padding-right: 18px;
|
||||
}
|
||||
.navbar-dropdown {
|
||||
position: relative;
|
||||
top: 0;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
ul {
|
||||
padding: 15px 25px !important;
|
||||
}
|
||||
}
|
||||
&.submenu {
|
||||
> .nav-link {
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: 35px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.mega-menu {
|
||||
.navbar-dropdown {
|
||||
padding: 5px !important;
|
||||
}
|
||||
}
|
||||
.category-heading {
|
||||
padding-top: 0px;
|
||||
}
|
||||
&.show-submenu {
|
||||
.navbar-dropdown {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&:not(.show-submenu) {
|
||||
> .nav-link {
|
||||
&:after {
|
||||
transform: rotate(0deg) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.page-navigation-style-2 {
|
||||
> .nav-item {
|
||||
flex-direction: column;
|
||||
margin-bottom: 10px;
|
||||
> .nav-link {
|
||||
}
|
||||
.navbar-dropdown {
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.show {
|
||||
.page-navigation {
|
||||
-webkit-transform: translate3d(0px, 0, 0);
|
||||
-moz-transform: translate3d(0px, 0, 0);
|
||||
-o-transform: translate3d(0px, 0, 0);
|
||||
-ms-transform: translate3d(0px, 0, 0);
|
||||
transform: translate3d(0px, 0, 0) !important;
|
||||
}
|
||||
.body-overlay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#menuIconHeader {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
z-index: 1001;
|
||||
transition: all 0.5s ease 0s;
|
||||
transform: translate3d(0px, -70px, 0px) !important;
|
||||
min-height: 62px;
|
||||
display: flex;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.nav-bottom {
|
||||
.navbar-header {
|
||||
background: transparent !important;
|
||||
&[data-background-color="dark"] {
|
||||
@include darkNavbarHeader($black-color);
|
||||
}
|
||||
&[data-background-color="dark2"] {
|
||||
@include darkNavbarHeader($black2-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animateNavBottom {
|
||||
0% {
|
||||
z-index: -1;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
99% {
|
||||
z-index: -1;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
z-index: 1000;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
81
public/kai/build/scss/layouts-style/_fullheight.scss
Normal file
81
public/kai/build/scss/layouts-style/_fullheight.scss
Normal file
@@ -0,0 +1,81 @@
|
||||
/* Fullheight side */
|
||||
.fullheight-side {
|
||||
.logo-header {
|
||||
-webkit-box-shadow: 4px 0px 10px rgba(69, 65, 78, 0.06);
|
||||
-moz-box-shadow: 4px 0px 10px rgba(69, 65, 78, 0.06);
|
||||
box-shadow: 4px 0px 10px rgba(69, 65, 78, 0.06);
|
||||
}
|
||||
.sidebar {
|
||||
z-index: 1002;
|
||||
}
|
||||
.navbar-header {
|
||||
min-height: 62px;
|
||||
transition: all .3s;
|
||||
}
|
||||
.main-panel {
|
||||
min-height: calc(100vh - 62px);
|
||||
height: unset;
|
||||
> .container, > .container-full {
|
||||
min-height: calc(100vh - 129px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 991px){
|
||||
.fullheight-side {
|
||||
.navbar-header {
|
||||
width: calc(100% - 250px);
|
||||
float: right;
|
||||
}
|
||||
&.sidebar_minimize {
|
||||
.navbar-header {
|
||||
width: calc(100% - 75px) !important;
|
||||
}
|
||||
}
|
||||
&.sidebar_minimize_hover {
|
||||
.navbar-header {
|
||||
width: calc(100% - 250px) !important;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991.5px){
|
||||
.fullheight-side {
|
||||
.logo-header {
|
||||
z-index: 1002;
|
||||
transition: all .5s;
|
||||
}
|
||||
.navbar-header {
|
||||
z-index: 1001;
|
||||
&.navbar-header-transparent {
|
||||
background: #fff;
|
||||
position: fixed;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav_open {
|
||||
.fullheight-side {
|
||||
.logo-header {
|
||||
-webkit-transform: translate3d(250px, 0, 0);
|
||||
-moz-transform: translate3d(250px, 0, 0);
|
||||
-o-transform: translate3d(250px, 0, 0);
|
||||
-ms-transform: translate3d(250px, 0, 0);
|
||||
transform: translate3d(250px, 0, 0) !important;
|
||||
}
|
||||
}
|
||||
&.topbar_open {
|
||||
.fullheight-side {
|
||||
.navbar-header {
|
||||
-webkit-transform: translate3d(250px, 61px, 0);
|
||||
-moz-transform: translate3d(250px, 61px, 0);
|
||||
-o-transform: translate3d(250px, 61px, 0);
|
||||
-ms-transform: translate3d(250px, 61px, 0);
|
||||
transform: translate3d(250px, 61px, 0) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
28
public/kai/build/scss/layouts-style/_future.scss
Normal file
28
public/kai/build/scss/layouts-style/_future.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
.future-layout {
|
||||
background: #3D82A4;
|
||||
.logo-header {
|
||||
background: transparent !important;
|
||||
}
|
||||
.sidebar {
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
-moz-box-shadow: none !important;
|
||||
}
|
||||
.main-header {
|
||||
background: transparent !important;
|
||||
position: static !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
.main-panel{
|
||||
> .container {
|
||||
margin-top: unset !important;
|
||||
background: #fff !important;
|
||||
border-top-left-radius: 30px;
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
background: transparent !important;
|
||||
border-top: 0 !important;
|
||||
}
|
||||
}
|
||||
265
public/kai/build/scss/layouts-style/_futuristic.scss
Normal file
265
public/kai/build/scss/layouts-style/_futuristic.scss
Normal file
@@ -0,0 +1,265 @@
|
||||
.main-panel {
|
||||
height: calc(100vh - 66px);
|
||||
min-height: calc(100vh - 66px);
|
||||
> .container {
|
||||
min-height: calc(100% - 76px);
|
||||
padding-left: 16px !important;
|
||||
padding-right: 16px !important;
|
||||
}
|
||||
.overlay {
|
||||
min-height: 175px;
|
||||
}
|
||||
}
|
||||
|
||||
.topbar_open {
|
||||
.main-panel {
|
||||
transition-delay: 0.1s !important;
|
||||
}
|
||||
#menuIconHeader {
|
||||
transform: translate3d(0, 63px, 0) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.container-futuristic {
|
||||
margin-top: -175px !important;
|
||||
}
|
||||
|
||||
.page-wrapper {
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
|
||||
.page-inner {
|
||||
padding: 0 !important;
|
||||
border-radius: 5px;
|
||||
margin-bottom: 30px;
|
||||
overflow: hidden;
|
||||
&.page-inner-futuristic {
|
||||
background: #fff;
|
||||
padding: 1.5rem !important;
|
||||
min-height: 100vh;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
.more {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
font-size: 22px;
|
||||
padding: 0;
|
||||
color: #fff;
|
||||
}
|
||||
.navbar-nav .nav-item .nav-link {
|
||||
color: #fff;
|
||||
}
|
||||
.page-navigation > .nav-item > .nav-link .menu-title {
|
||||
color: #fff !important;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1200.5px) {
|
||||
.page-sidebar {
|
||||
right: -16px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.pagesidebar_open .page-sidebar {
|
||||
transform: translate3d(-16px, 0, 0) !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.btn-toggle {
|
||||
display: none;
|
||||
}
|
||||
.topbar-toggler {
|
||||
display: none;
|
||||
}
|
||||
.container {
|
||||
&.container-futuristic {
|
||||
padding-left: 15px !important;
|
||||
padding-right: 15px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991.5px) {
|
||||
.main-header {
|
||||
min-height: 65px;
|
||||
.navbar-header {
|
||||
min-height: 65px;
|
||||
}
|
||||
.nav-controls {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
#menuHeader {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
z-index: 1200;
|
||||
left: 0 !important;
|
||||
right: 0;
|
||||
top: 0;
|
||||
margin-top: 0px;
|
||||
overflow-y: auto;
|
||||
.body-overlay {
|
||||
display: none;
|
||||
}
|
||||
.page-navigation {
|
||||
min-height: 100vh;
|
||||
width: 275px;
|
||||
max-width: calc(100% - 40px);
|
||||
padding-bottom: 60px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
display: block;
|
||||
z-index: 2001;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(-275px, 0, 0);
|
||||
-moz-transform: translate3d(-275px, 0, 0);
|
||||
-o-transform: translate3d(-275px, 0, 0);
|
||||
-ms-transform: translate3d(-275px, 0, 0);
|
||||
transform: translate3d(-275px, 0, 0) !important;
|
||||
transition: all 0.5s;
|
||||
.title-menu {
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
color: #fff;
|
||||
height: 56px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 20px;
|
||||
position: relative;
|
||||
font-weight: 300;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
.close-menu {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
> .nav-item {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
padding: 0;
|
||||
&:first-child > a {
|
||||
margin-left: 0;
|
||||
}
|
||||
&.active {
|
||||
&:before {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
> .nav-link {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
padding-left: 18px;
|
||||
padding-right: 18px;
|
||||
border-radius: 0;
|
||||
}
|
||||
.navbar-dropdown {
|
||||
position: relative;
|
||||
top: 0;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
ul {
|
||||
padding: 15px 25px !important;
|
||||
}
|
||||
}
|
||||
&.submenu {
|
||||
> .nav-link {
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: 35px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.mega-menu {
|
||||
.navbar-dropdown {
|
||||
padding: 5px !important;
|
||||
}
|
||||
}
|
||||
.category-heading {
|
||||
padding-top: 0px;
|
||||
}
|
||||
&.show-submenu {
|
||||
.navbar-dropdown {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&:not(.show-submenu) {
|
||||
> .nav-link {
|
||||
&:after {
|
||||
transform: rotate(0deg) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.page-navigation-style-2 {
|
||||
> .nav-item {
|
||||
flex-direction: column;
|
||||
margin-bottom: 10px;
|
||||
> .nav-link {
|
||||
}
|
||||
.navbar-dropdown {
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.show {
|
||||
.page-navigation {
|
||||
-webkit-transform: translate3d(0px, 0, 0);
|
||||
-moz-transform: translate3d(0px, 0, 0);
|
||||
-o-transform: translate3d(0px, 0, 0);
|
||||
-ms-transform: translate3d(0px, 0, 0);
|
||||
transform: translate3d(0px, 0, 0) !important;
|
||||
}
|
||||
.body-overlay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#menuIconHeader {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
z-index: 1001;
|
||||
transition: all 0.5s ease 0s;
|
||||
transform: translate3d(0px, -70px, 0px) !important;
|
||||
min-height: 62px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
.nav-toggle {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
}
|
||||
.more {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
}
|
||||
.navbar-brand {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
275
public/kai/build/scss/layouts-style/_horizontal.scss
Normal file
275
public/kai/build/scss/layouts-style/_horizontal.scss
Normal file
@@ -0,0 +1,275 @@
|
||||
.main-panel {
|
||||
height: calc(100vh - 80px);
|
||||
min-height: calc(100vh - 80px);
|
||||
> .container {
|
||||
min-height: calc(100% - 76px);
|
||||
}
|
||||
}
|
||||
|
||||
.nav-toggle {
|
||||
.btn-toggle {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: transparent !important;
|
||||
color: unset !important;
|
||||
}
|
||||
}
|
||||
|
||||
.overlay_sidebar_show {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #000;
|
||||
opacity: 0.15;
|
||||
z-index: 2000;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
.more {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
font-size: 22px;
|
||||
padding: 0;
|
||||
color: #fff;
|
||||
}
|
||||
&[data-background-color="dark"] .page-navigation > .nav-item ul li a, &[data-background-color="dark2"] .page-navigation > .nav-item ul li a {
|
||||
color: #b9babf;
|
||||
&:before {
|
||||
background: #b9babf;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
left: -265px !important;
|
||||
z-index: 2001;
|
||||
transition: all 0.3s;
|
||||
.sidebar-wrapper {
|
||||
max-height: 100vh !important;
|
||||
padding-bottom: 0px !important;
|
||||
}
|
||||
.btn-close-sidebar {
|
||||
padding: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar_show {
|
||||
overflow: hidden;
|
||||
.sidebar {
|
||||
left: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.nav-toggle {
|
||||
position: absolute;
|
||||
left: -30px;
|
||||
}
|
||||
.more,
|
||||
.toggle-page-navigation {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991.5px) {
|
||||
.topbar_open {
|
||||
#menuIconHeader {
|
||||
transform: translate3d(0, 63px, 0) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.main-header {
|
||||
min-height: 65px;
|
||||
.navbar-header {
|
||||
min-height: 65px;
|
||||
}
|
||||
.nav-controls {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
#menuHeader {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
z-index: 1200;
|
||||
left: 0 !important;
|
||||
right: 0;
|
||||
top: 0;
|
||||
margin-top: 0px;
|
||||
overflow-y: auto;
|
||||
.body-overlay {
|
||||
display: none;
|
||||
}
|
||||
.page-navigation {
|
||||
min-height: 100vh;
|
||||
width: 275px;
|
||||
max-width: calc(100% - 40px);
|
||||
padding-bottom: 60px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
display: block;
|
||||
z-index: 2001;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(-275px, 0, 0);
|
||||
-moz-transform: translate3d(-275px, 0, 0);
|
||||
-o-transform: translate3d(-275px, 0, 0);
|
||||
-ms-transform: translate3d(-275px, 0, 0);
|
||||
transform: translate3d(-275px, 0, 0) !important;
|
||||
transition: all 0.5s;
|
||||
.title-menu {
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
color: #fff;
|
||||
height: 56px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 20px;
|
||||
position: relative;
|
||||
font-weight: 300;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
.close-menu {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
> .nav-item {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
padding: 0;
|
||||
&:first-child > a {
|
||||
margin-left: 0;
|
||||
}
|
||||
&.active {
|
||||
&:before {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
transform: none;
|
||||
left: 0;
|
||||
height: 2px;
|
||||
bottom: -2px;
|
||||
}
|
||||
}
|
||||
> .nav-link {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
padding-left: 18px;
|
||||
padding-right: 18px;
|
||||
min-height: 60px;
|
||||
}
|
||||
.navbar-dropdown {
|
||||
position: relative;
|
||||
top: 0 !important;
|
||||
border: 0;
|
||||
width: 100% !important;
|
||||
border-radius: 0px;
|
||||
ul {
|
||||
padding: 15px 25px !important;
|
||||
}
|
||||
}
|
||||
&.submenu {
|
||||
> .nav-link {
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: 35px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.mega-menu {
|
||||
.navbar-dropdown {
|
||||
padding: 5px !important;
|
||||
}
|
||||
}
|
||||
.category-heading {
|
||||
padding-top: 0px;
|
||||
}
|
||||
&.show-submenu {
|
||||
.navbar-dropdown {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&:not(.show-submenu) {
|
||||
> .nav-link {
|
||||
&:after {
|
||||
transform: rotate(0deg) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.page-navigation-style-2 {
|
||||
> .nav-item {
|
||||
flex-direction: column;
|
||||
margin-bottom: 10px;
|
||||
> .nav-link {
|
||||
}
|
||||
.navbar-dropdown {
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.show {
|
||||
.page-navigation {
|
||||
-webkit-transform: translate3d(0px, 0, 0);
|
||||
-moz-transform: translate3d(0px, 0, 0);
|
||||
-o-transform: translate3d(0px, 0, 0);
|
||||
-ms-transform: translate3d(0px, 0, 0);
|
||||
transform: translate3d(0px, 0, 0) !important;
|
||||
}
|
||||
.body-overlay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#menuIconHeader {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
z-index: 1001;
|
||||
transition: all 0.5s ease 0s;
|
||||
transform: translate3d(0px, -70px, 0px) !important;
|
||||
min-height: 62px;
|
||||
display: flex;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
.nav-toggle {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
}
|
||||
.more {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
}
|
||||
.navbar-brand {
|
||||
position: absolute;
|
||||
left: 50px;
|
||||
// transform: translateX(-50%);
|
||||
}
|
||||
.toggle-page-navigation {
|
||||
position: absolute;
|
||||
right: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
68
public/kai/build/scss/layouts-style/_trendy.scss
Normal file
68
public/kai/build/scss/layouts-style/_trendy.scss
Normal file
@@ -0,0 +1,68 @@
|
||||
.trendy-layout {
|
||||
.logo-header {
|
||||
background: transparent !important;
|
||||
}
|
||||
.sidebar {
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
-moz-box-shadow: none !important;
|
||||
}
|
||||
.main-header {
|
||||
background: transparent !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
.footer {
|
||||
background: transparent !important;
|
||||
border-top: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.trendy-layout {
|
||||
.main-header {
|
||||
position: static !important;
|
||||
}
|
||||
}
|
||||
.trendy-layout {
|
||||
.main-panel {
|
||||
> .container {
|
||||
margin-top: unset !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.sidebar_minimize {
|
||||
&.sidebar_minimize_hover {
|
||||
.main-header {
|
||||
width: 100% !important;
|
||||
}
|
||||
.main-panel {
|
||||
width: calc(100% - 265px) !important;
|
||||
}
|
||||
.sidebar {
|
||||
width: 265px;
|
||||
position: fixed;
|
||||
height: 100vh;
|
||||
top: unset;
|
||||
.logo-header {
|
||||
width: 265px;
|
||||
padding-left: 25px;
|
||||
padding-right: 25px;
|
||||
text-align: left;
|
||||
}
|
||||
.sidebar-wrapper {
|
||||
width: 265px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991.5px) {
|
||||
.trendy-layout .logo-header {
|
||||
background: #fff !important;
|
||||
}
|
||||
.topbar_open .logo-header {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
|
||||
}
|
||||
}
|
||||
144
public/kai/build/scss/layouts-style/_trendy2.scss
Normal file
144
public/kai/build/scss/layouts-style/_trendy2.scss
Normal file
@@ -0,0 +1,144 @@
|
||||
.trendy2-layout {
|
||||
.logo-header {
|
||||
// background: transparent !important;
|
||||
}
|
||||
.overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
height: 327px;
|
||||
}
|
||||
.main-header {
|
||||
background: transparent !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
.main-panel {
|
||||
> .container {
|
||||
margin-top: 70px !important;
|
||||
> .page-inner {
|
||||
background: #fff;
|
||||
border-radius: 5px;
|
||||
margin-top: 15px !important;
|
||||
margin-left: 30px;
|
||||
margin-right: 30px;
|
||||
min-height: 100vh;
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
background: transparent !important;
|
||||
border-top: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.trendy2-layout {
|
||||
.sidebar {
|
||||
float: left;
|
||||
position: unset;
|
||||
height: 100%;
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
-moz-box-shadow: none !important;
|
||||
.sidebar-wrapper {
|
||||
// height: 100%;
|
||||
// max-height: calc(100vh - 25px);
|
||||
overflow: hidden;
|
||||
padding-bottom: 0;
|
||||
max-height: unset !important;
|
||||
}
|
||||
.sidebar-content {
|
||||
height: 100%;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.nav-sidebar-scroll {
|
||||
flex: 1;
|
||||
max-height: calc(100% - 255px);
|
||||
padding-bottom: 50px !important;
|
||||
}
|
||||
}
|
||||
.page-wrapper {
|
||||
border-radius: 5px;
|
||||
margin-top: 15px !important;
|
||||
margin-right: 30px;
|
||||
}
|
||||
.mail-wrapper {
|
||||
border-radius: 5px;
|
||||
}
|
||||
.conversations {
|
||||
height: 100vh;
|
||||
}
|
||||
}
|
||||
.sidebar_minimize {
|
||||
> .overlay {
|
||||
height: 155px !important;
|
||||
}
|
||||
&.sidebar_minimize_hover {
|
||||
.main-header {
|
||||
width: 100% !important;
|
||||
}
|
||||
> .overlay {
|
||||
height: 327px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.sidebar_minimize {
|
||||
&.sidebar_minimize_hover {
|
||||
.main-header {
|
||||
width: 100% !important;
|
||||
}
|
||||
.main-panel {
|
||||
width: calc(100% - 265px) !important;
|
||||
}
|
||||
.sidebar {
|
||||
width: 265px;
|
||||
position: unset;
|
||||
height: unset;
|
||||
top: unset;
|
||||
.logo-header {
|
||||
width: 265px;
|
||||
padding-left: 25px;
|
||||
padding-right: 25px;
|
||||
text-align: left;
|
||||
}
|
||||
.sidebar-wrapper {
|
||||
width: 265px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.trendy2-layout {
|
||||
.main-header {
|
||||
position: static !important;
|
||||
}
|
||||
}
|
||||
.trendy2-layout {
|
||||
.main-panel {
|
||||
> .container {
|
||||
margin-top: unset !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991.5px) {
|
||||
.trendy2-layout {
|
||||
.main-panel > .container > .page-inner {
|
||||
margin-top: 0px !important;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
.sidebar {
|
||||
.profile-section {
|
||||
background: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user