first commit

This commit is contained in:
2022-04-13 13:51:55 +07:00
commit 47e209c023
3107 changed files with 238911 additions and 0 deletions

View File

@ -0,0 +1,8 @@
@import './footer/footer';
@import './header/header';
@import './rtl/rtl';
@import './sidebar/sidebar';
@import './theme/theme';
@import './typography/typography';
@import './version-transparent/main';
@import './version-dark/main';

View File

@ -0,0 +1,27 @@
.footer {
padding-left: 21.563rem;
background-color: $body-bg;
@include respond('laptop'){
padding-left: 17rem;
}
.copyright {
padding: 0.9375rem;
p {
text-align: center;
margin: 0;
}
a{
color: $primary;
}
@include custommq($min: 991px) {
border-radius:0 0 0 50px;
}
}
}

View File

@ -0,0 +1,262 @@
/////////////////
// Header
/////////////////
.header {
// width: 100%;
height: 7.5rem;
z-index: 1;
position: relative;
padding: 0rem;
background-color: $white;
z-index: 4;
// box-shadow: 0 0 1rem $l-border;
padding-left: 21.563rem;
transition: all .2s ease;
@include respond('laptop'){
padding-left: 17rem;
}
// &::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: 2.4rem;
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: 767px) {
padding-left: 3.75rem;
padding-right: 0.938rem;
border-radius: 0;
}
}
.navbar {
padding: 0;
height: 100%;
width: 100%;
.navbar-collapse {
height: 100%;
width: 100%;
}
}
@include respond('tab-land'){
height:5rem;
}
}
////////////////////////
// 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: 1rem;
position: absolute;
background:$warning;
right: 0px;
top: 0px;
width: 1rem;
&:after,
&:before {
content: '';
@include circle(1rem);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: -.2rem;
background-color: $warning;
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;
}
}
@include respond ('laptop'){
height:0.5rem;
width:0.5rem;
}
}
@-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: 17rem;
}
@include respond('tab-land') {
width: 100%;
padding-left: 5rem;
}
}
}
[data-sidebar-style="mini"] {
.header {
width: 100%;
padding-left: 5rem;
}
}
[data-sidebar-style="compact"] {
.header {
width: 100%;
padding-left: 15rem;
.header-content{
padding-left: 2.4rem;
}
}
}
[data-header-position="fixed"] {
.header {
position: fixed;
top: 0;
width: 100%;
}
.content-body {
padding-top: 7.5rem;
@include respond('tab-land'){
padding-top: 5rem;
}
}
.deznav {
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 {
width: 100%;
padding-left: 9.375rem;
}
&[data-layout="horizontal"] {
.nav-header .brand-logo{
justify-content: start;
}
.header .header-content{
padding-left: 30px;
}
}
}

View File

@ -0,0 +1,156 @@
.header-left {
height: 100%;
display: flex;
align-items: center;
.dashboard_bar {
font-size: 28px;
font-weight: 600;
color:$black;
@include respond('laptop') {
font-size: 24px;
}
@include respond('phone-land') {
display:none;
}
}
input {
background: $body-bg !important;
min-width: 170px;
min-height: 40px;
color: $dark!important;
border-top-left-radius: $radius;
border-bottom-left-radius: $radius;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
box-shadow: none;
padding: 10px 20px;
font-size: 16px;
border-right-width:0!important;
border: 1px solid #ebebeb;
border-width: 1px;
font-weight: 300;
@include respond('desktop') {
// margin-top: 3px;
}
@at-root [direction="rtl"] & {
border-top-right-radius: $radius;
border-bottom-right-radius: $radius;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
&:focus,
&:active,
&.active {
border-color: #ebebeb;
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%;
@include respond('phone-land') {
display:none;
}
.dropdown-menu {
box-shadow: none;
}
.search_icon {
background: $body-bg !important;
height: 56px;
line-height:22px;
padding: 15px 20px 15px 0 !important;
border-top-right-radius: $radius;
border-bottom-right-radius: $radius;
border: 1px solid #ebebeb;
border-width: 1px;
border-left-width:0;
i {
font-size: 24px;
color: $dark;
line-height: 1;
}
@include respond('laptop') {
height: 41px;
padding: 8px 15px 8px 0 !important;
svg{
width:18px;
height:18px;
}
}
}
@include custommq($max: 767px) {
position: static;
.dropdown-menu {
width: 300px;
left: -15vw;
box-shadow: 0px 5px 10px 0 rgba(0,0,0,0.1);
border-radius: 4px !important;
@include respond('phone') {
width: 250px;
left: -25vw;
}
.form-control{
border-radius: 4px !important;
width:100%;
}
@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: 0;
top: 0;
transform: none;
display: block;
position: unset;
}
}
}
}
[data-sidebar-style="compact"] {
.header-left {
margin-left: 0;
}
}

View File

@ -0,0 +1,343 @@
.header-right {
height: 100%;
.nav-item {
height: 100%;
display: flex;
align-items: center;
.nav-link {
color: $l-ctd;
font-size: 18px;
}
}
.right-sidebar{
margin-right:-30px;
a{
height: 80px;
width: 80px;
text-align: center;
justify-content: center;
display: flex;
align-items: center;
border-left: 1px solid $light;
}
}
&>li {
&:not(:first-child) {
padding-left:2rem;
@include respond ('mid-desktop'){
padding-left: 1.3rem;
}
@include respond('laptop') {
padding-left:1rem;
}
@include respond('phone') {
padding-left:0.5rem;
}
}
}
.notification_dropdown {
@include respond('phone-land') {
position: static;
}
.nav-link {
position: relative;
color: $primary;
background: rgba($primary,0.1);
border-radius: $radius;
padding: 12px;
//border:1px solid $primary;
line-height: 1;
@include respond('laptop') {
padding: 10px;
}
&.secondary{
background:$secondary-light;
color: $secondary;
[fill] {
fill: $secondary;
}
}
&.primary{
background:$primary-light;
color: $primary;
[fill] {
fill: $primary;
}
}
&.warning{
background:$warning-light;
color: $warning;
[fill] {
fill: $warning;
}
}
&.success{
background:$success-light;
color: $success;
[fill] {
fill: $success;
}
}
i {
font-size: 24px;
@include respond('laptop') {
font-size: 18px;
}
}
svg{
@include respond('laptop') {
width:24px;
height:24px;
}
}
.badge {
position: absolute;
font-size: 14px;
border-radius: 40px;
right: -1px;
top: 3px;
box-shadow:0px 0px 10px 3px rgba($primary,0.2);
font-weight: normal;
height: 26px;
width: 26px;
line-height: 26px;
text-align: center;
padding: 0px;
@include respond('laptop') {
right: 3px;
top: 3px;
font-size: 12px;
height: 18px;
width: 18px;
line-height: 18px;
}
@include respond ('phone'){
right:-1px;
height:15px;
width:15px;
font-size:10px;
line-height:15px;
}
}
}
.dropdown-item {
&:focus,
&:active {
a {
color: $white;
}
}
a {
color: $dark;
&:hover {
text-decoration: none;
}
}
}
}
.dropdown-menu {
border-width:0;
box-shadow: 0 0 37px rgba(8,21,66,0.05);
@at-root [data-theme-version="dark"] & {
box-shadow: none;
}
}
.header-profile {
&>a.nav-link {
padding: 0 0 0 0;
display: flex;
align-items: center;
border-radius: $radius 28px 28px $radius;
@include respond('phone') {
background: transparent;
padding: 0 ;
}
i {
font-weight: 700;
}
.header-info{
text-align: left;
padding-left:15px;
@include respond('tab-land') {
padding-left:15px;
}
@include respond('phone') {
display:none;
}
span{
font-size:16px;
display: block;
font-weight: 400;
}
strong{
font-weight: 600;
}
small{
display:block;
font-size: 13px;
color:$muted;
font-weight:400;
line-height: 1.2;
}
}
}
.dropdown-menu {
padding: 15px 0;
min-width: 12.5rem;
a {
&:hover,
&:focus,
&.active {
color: $primary;
}
}
}
img {
width: 57px;
height: 57px;
border-radius: 60px;
@include respond('laptop') {
width: 39px;
height: 39px;
}
}
.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: 8px 24px;
}
}
}
.dz-fullscreen{
#icon-minimize{
display:none;
}
&.active{
#icon-full{
display:none;
}
#icon-minimize{
display:inline-block;
}
}
}
.notification_dropdown {
.dropdown-menu-right {
min-width: 310px;
padding: 0rem 0 1rem;
top: 100%;
.notification_title {
background: $primary;
color: $white;
padding: 10px 20px;
h5 {
color: $white;
margin-bottom: 3px;
}
}
.media {
width: 45px !important;
height: 45px !important;
font-size: 18px !important;
// &: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;
@at-root [direction="rtl"]#{&} {
margin-right: 0;
margin-left: 10px
}
&.success {
background: $success-light;
color: $success;
[fill] {
fill: $success;
}
}
&.primary {
background: $primary-light;
color: $primary;
svg [fill] {
fill: $primary;
}
}
&.danger {
background: $danger-light;
color: $danger;
[fill] {
fill: $danger;
}
}
[fill] {
fill: $primary;
}
}
.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;
@include respond('phone') {
max-width: 100px;
}
}
}
.all-notification {
display: block;
padding: 15px 30px 0;
// color: $dark;
text-align: center;
border-top: 1px solid $light;
i {
margin-left: 10px;
}
}
}
}

View File

@ -0,0 +1,7 @@
@import './nav-header/nav-header';
@import './header-global';
@import './header-left';
@import './header-right';

View File

@ -0,0 +1,288 @@
[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: 7.5rem;
width: 21.563rem;
display: inline-block;
text-align: left;
position: absolute;
left: 0;
top: 0;
background-color: $white;
transition: all .2s ease;
z-index: 5;
// border-bottom: 1px solid $border;
.logo-abbr {
max-width: 52px;
@include respond('phone') {
max-width: 40px;
}
}
.logo-compact {
display: none;
}
// @include respond('big-desktop') {
// left: 3.125rem;
// }
@include custommq($min: 1200px, $max: 1400px) {
width: 17rem;
}
.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: 50px;
padding-right: 50px;
font-weight: 700;
@include respond('laptop') {
padding-left: 25px;
padding-right: 25px;
}
// &: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: 10px;
max-width: 120px;
margin-top: 0px;
// &::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('tab-land') {
.nav-header {
width: 5rem;
height:5rem;
.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: -2.75rem;
}
@include respond('phone') {
right: -2.75rem;
}
// @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: 3px;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 26px;
z-index: 999;
}
.hamburger .line {
background: $primary;
display: block;
height: 3px;
border-radius: 3px;;
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: 15rem;
}
}
}
[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"] {
.logo-compact {
display: none;
}
}
[data-sidebar-style="mini"] {
.nav-header {
.logo-abbr {
display: block;
}
}
}
[data-sidebar-style="compact"][data-layout="vertical"] {
.nav-header {
.brand-title {
/* display: none; */
}
.logo-compact {
max-width: 75px;
}
}
}
[data-sidebar-style="compact"][data-layout="horizontal"] {
.nav-header .brand-logo {
padding-left: 30px;
padding-right: 30px;
justify-content: start;
}
}
[data-sidebar-style="modern"][data-layout="vertical"] {
.nav-header {
width: 9.375rem;
.brand-title {
display: none;
}
.logo-compact {
display: none;
}
}
}

View File

@ -0,0 +1 @@
@import './nav-control';

View File

@ -0,0 +1,44 @@
html[dir="rtl"] {
//footer
[direction="rtl"] {
.footer{
padding-right: 17.1875rem;
padding-left: 0;
@include media-breakpoint-down(sm) {
padding-right: 0;
}
}
&[data-sidebar-style="overlay"] {
.footer {
padding-right: 0;
}
}
.menu-toggle {
.footer {
padding-right: 3.75rem;
}
}
&[data-container="boxed"] {
.footer {
padding-right: 0;
}
}
&[data-sidebar-style="mini"]:not([data-layout="horizontal"]) {
.footer {
padding-right: 3.75rem;
}
}
&[data-sidebar-style="compact"]:not([data-layout="horizontal"]) {
.footer {
padding-right: 9.375rem;
}
}
}
}

View File

@ -0,0 +1,78 @@
// html[dir="rtl"] {
//content body
[direction="rtl"] {
.list-group{
padding-left: 0;
}
.form-check-input{
margin-left: -1.25rem;
margin-right: inherit;
}
.form-check-inline .form-check-input{
margin-right: 0;
margin-left: 10px;
}
.radio input,
.radio-inline,
.checkbox input,
.checkbox-inline input{
margin-left: 0;
margin-right: 0;
}
.content-body {
margin-right: 17.1875rem;
margin-left: auto;
@at-root [data-sidebar-style="modern"]#{&} {
margin-right: 9.375rem;
}
.page-titles {
text-align: right;
}
}
&[data-layout="horizontal"] {
.content-body {
margin-right: 0;
}
.deznav .metismenu li li .has-arrow:after{
-webkit-transform: rotate(-4deg) translateY(-50%);
transform: rotate(-45deg) translateY(-50%);
}
}
&[data-sidebar-style="mini"]:not([data-layout="horizontal"]) {
.content-body {
margin-right: 3.75rem;
}
}
&[data-sidebar-style="compact"]:not([data-layout="horizontal"]) {
.content-body {
margin-right: 9.375rem;
}
}
&[data-sidebar-style="overlay"] {
.content-body {
margin-right: 0;
}
}
#external-events .external-event:before{
margin-right: 0;
margin-left: .9rem;
}
.post-input a i{
margin-left: 15px;
margin-right: 0;
}
}
// }
@media only screen and (max-width: 1350px) and (min-width: 1200px){
[direction="rtl"] {
.content-body {
margin-right: 14.375rem;
}
}
}

View File

@ -0,0 +1,109 @@
//header styles
[direction="rtl"] {
.header {
padding: 0 0.9375rem;
padding-right: 17.1875rem;
@include media-breakpoint-down(sm) {
padding-right: 3.75rem;
padding-left: 0;
}
.header-content {
padding-left: 0;
padding-right: 5.3125rem;
@include custommq($max: 575px) {
padding-right: 4.5rem;
}
@at-root [data-sidebar-style="compact"]#{&}{
padding-right: 1.875rem;
}
@at-root [data-sidebar-style="modern"]#{&}{
padding-right: 5.3125rem;
}
@at-root [data-sidebar-style="overlay"]#{&}{
padding-right: 5.3125rem;
}
}
.nav-control {
right: 0.4375rem;
left: auto;
}
}
.header-left{
.search_bar{
.dropdown-menu,
.dropdown-menu.show{
right: 40px !important;
@include respond('phone') {
right: -100px !important;
}
}
.search_icon{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 5rem;
border-bottom-right-radius: 5rem;
@include respond('phone') {
border-radius: 5rem;
}
}
}
}
&[data-layout="horizontal"] {
.header {
padding: 0;
padding-right: 16rem;
.header-content{
padding-right: 1.875rem;
padding-left: 1.875rem;
}
}
}
&[data-layout="horizontal"][data-sidebar-style="mini"] {
.header {
padding-right: 6rem;
}
}
&[data-sidebar-style="mini"] {
.header {
padding: 0 0.9375rem;
padding-right: 3.75rem;
}
}
&[data-sidebar-style="compact"] {
.header {
padding: 0 0.9375rem;
padding-right: 9.375rem;
}
&[data-layout="horizontal"]{
.header{
padding:0;
padding-right: 16rem;
}
}
}
&[data-sidebar-style="modern"] {
.header {
padding: 0 0.9375rem;
padding-right: 9.375rem;
}
&[data-layout="horizontal"]{
.header{
padding:0;
padding-right: 16rem;
}
}
}
}

View File

@ -0,0 +1,105 @@
//nav header styles
[direction="rtl"] {
&:not([data-container="boxed"]) {
.nav-header {
left: auto;
right: 0;
}
}
&[data-container="wide-boxed"] {
.nav-header {
left: auto;
right: 0;
}
}
.nav-header {
text-align: right;
right: auto;
.brand-title{
margin-left: 0;
margin-right: 15px;
}
.brand-logo {
padding-left: 0;
padding-right: 1.75rem;
@at-root [data-sidebar-style="compact"]#{&}{
padding-right: 0;
}
@at-root [data-sidebar-style="compact"]#{&}[data-layout="horizontal"]{
padding-right: 30px;
}
@at-root [data-sidebar-style="mini"]#{&}{
padding-right: 0;
}
@at-root [data-sidebar-style="modern"]#{&}{
padding-right: 0;
@at-root [data-layout="horizontal"]#{&}{
padding-right: 30px;
}
}
@include media-breakpoint-down(sm) {
// padding-left: 0;
padding-right: 0;
// justify-content: center;
}
}
}
.nav-control {
right: auto;
left: -4.0625rem;
@include media-breakpoint-down(sm) {
left: -4.0625rem;
}
@include media-breakpoint-down(xs) {
left:-4.0625rem;
}
}
&[data-sidebar-style="overlay"] {
.nav-header {
.hamburger {
&.is-active {
right: 0;
// .line:nth-child(1) {
// transform: translateY(0.4rem) rotate(-45deg);
// }
//
// .line:nth-child(3) {
// transform: translateY(-0.4rem) rotate(45deg);
// }
}
}
}
}
}
[direction="rtl"][data-sidebar-style="compact"][data-layout="horizontal"]{
.nav-header .brand-logo{
padding-right: 30px;
}
}
[direction="rtl"][data-sidebar-style="modern"][data-layout="horizontal"]{
.nav-header{
width: 16rem;
}
}

View File

@ -0,0 +1,118 @@
@import "../../../vendor/bootstrap-v4-rtl/scss/functions";
@import "../../../vendor/bootstrap-v4-rtl/scss/variables";
@import "../../../vendor/bootstrap-v4-rtl/scss/mixins";
@import "../../../vendor/bootstrap-v4-rtl/scss/rtl";
.rtl {
// stylelint-disable declaration-no-important
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
@each $prop, $abbrev in (margin: m, padding: p) {
@each $size, $length in $spacers {
// .#{$abbrev}r#{$infix}-#{$size} {
// #{$prop}-right: 0!important;
// #{$prop}-left: $length !important;
// }
.#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-right: auto;
#{$prop}-left: $length !important;
}
// .#{$abbrev}l#{$infix}-#{$size} {
// #{$prop}-left: 0!important;
// #{$prop}-right: $length !important;
// }
.#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-left: auto;
#{$prop}-right: $length !important;
}
}
}
.mr#{$infix}-auto {
margin-right: 0!important;
margin-left: auto !important;
}
.mx#{$infix}-auto {
margin-right: auto!important;
margin-left: auto !important;
}
.ml#{$infix}-auto {
margin-right: auto !important;
margin-left: 0 !important;
}
.mx#{$infix}-auto {
margin-right: auto !important;
margin-left: auto!important;
}
}
}
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
.float#{$infix}-left { @include float-right; }
.float#{$infix}-right { @include float-left; }
.float#{$infix}-none { @include float-none; }
}
}
}
//global styles
[direction="rtl"] {
&[data-theme-version="dark"] {
.border, .border-left, .border-right {
border-color: $d-border !important;
}
}
.text-right {
text-align: left !important;
}
.text-left {
text-align: right !important;
}
.border-right {
border-left: 1px solid $border !important;
border-right: 0 !important;
}
.border-left {
border-right: 1px solid $border !important;
border-left: 0 !important;
}
.dropdown-menu {
left: auto;
}
.dropdown-menu-right {
left: 0;
right: auto;
@include respond('phone') {
left: 15px;
}
}
.notification_dropdown .dropdown-menu-right .media > span{
margin-left: 10px;
margin-right: 0;
}
}

View File

@ -0,0 +1,26 @@
//sidebar right
[direction="rtl"] {
.sidebar-right {
left: -15.625rem;
right: auto;
box-shadow: 2px 3px 10px 0px rgba(119, 119, 119, 0.1);
&.show {
left: 0;
right: auto;
}
.sidebar-right-trigger {
left: 100%;
right: auto;
border-radius: 0 5px 5px 0;
box-shadow: 5px 3px 5px 0px rgba(119, 119, 119, 0.15);
}
}
.bootstrap-select .dropdown-toggle .filter-option{
text-align:right;
}
}

View File

@ -0,0 +1,85 @@
//sidebar styles
[direction="rtl"] {
text-align: right;
.deznav {
text-align: right;
.metismenu {
ul{
padding: 0 25px 0 0;
&:after{
left:auto;
right:25px;
}
a:before{
left:auto;
right: -5px;
}
}
li{
& > a svg{
margin-left:5px;
margin-right:0;
@at-root [data-sidebar-style="compact"]#{&} {
left: auto;
margin-left: auto;
margin-right: auto;
}
@at-root [data-sidebar-style="icon-hover"]#{&} {
margin-left:0;
}
}
}
li.active {
&>.has-arrow {
&:after {
transform: rotate(45deg) translateY(-50%);
}
}
}
.has-arrow {
&:after {
left: 1.5625rem;
right: auto;
@at-root [data-layout="horizontal"]#{&} {
left: 1.125rem;
}
@at-root [data-sidebar-style="modern"]#{&} {
-webkit-transform: rotate(-45deg) translateY(-50%);
transform: rotate(-45deg) translateY(-50%);
}
}
}
}
}
&[data-sidebar-style="full"][data-layout="vertical"] {
.menu-toggle {
.deznav {
.metismenu {
li {
&>ul {
li:hover {
ul {
right: 11.8125rem;
left: 0;
}
}
}
}
}
}
}
}
}

View File

@ -0,0 +1,7 @@
@import './rtl-reset';
@import './rtl-nav-header';
@import './rtl-header';
@import './rtl-sidebar';
@import './rtl-global';
@import './rtl-sidebar-right';
@import './rtl-footer';

View File

@ -0,0 +1,382 @@
.chatbox{
width:340px;
height:100vh;
position:fixed;
right:-500px;
top:0;
z-index:999;
background:#fff;
box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.15) ;
@include transitionSlow;
@at-root [data-theme-version="dark"] & {
background:$dark-card;
}
.chatbox-close{
position: absolute;
@include transitionFast;
width: 0;
height: 100%;
right: 340px;
background: #000;
z-index: 1;
opacity: 0.1;
cursor:pointer;
}
.card-fotter {
padding: 0.75rem 1rem;
}
.card-body {
padding: 1rem;
}
&.active{
right:0;
.chatbox-close{
width: 100vw;
}
}
.type_msg {
padding-top: 10px;
}
.nav{
padding: 1rem 1rem 0 1rem;
background:$primary;
border: 0;
justify-content: space-between;
.nav-link{
color: #fff;
opacity: 0.7;
text-transform: uppercase;
&:hover,
&.active{
background:transparent;
color: #fff;
opacity: 1;
border-color: #fff;
}
}
}
.img_cont{
width: 40px;
border-radius: 40px;
margin-right: 10px;
position: relative;
height: 40px;
background: #eee;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 14px;
min-width: 40px;
min-height: 40px;
.icon{
color:#fff;
}
&.primary{
background:$primary-light;
color:$primary;
@at-root [data-theme-version="dark"] & {
background:$primary-opacity;
}
}
&.warning{
background:$warning-light;
color:$warning;
@at-root [data-theme-version="dark"] & {
background:$warning-opacity;
}
}
&.success{
background:$success-light;
color:$success;
@at-root [data-theme-version="dark"] & {
background:$success-opacity;
}
}
&.info{
background:$info-light;
color:$info;
@at-root [data-theme-version="dark"] & {
background:$info-opacity;
}
}
img{
width:100%;
}
.online_icon{
background: $success;
position: absolute;
width: 12px;
height: 12px;
border-radius: 15px;
right: -1px;
bottom: 0px;
border: 2px solid #fff;
//box-shadow: 5px 5px 10px 0px rgba($success, 0.3);
&.offline{
background:$danger;
//box-shadow: 5px 5px 10px 0px rgba($danger, 0.3);
}
}
.online_icon{
}
}
.card{
box-shadow:none;
}
.search{
height:40px;
}
.user_info{
span{
font-size: 15px;
color: #000;
display: block;
font-weight: 500;
line-height: 1;
margin-bottom: 5px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
max-width: 170px;
@at-root [data-theme-version="dark"] & {
color: $white;
}
}
p{
font-size:13px;
margin-bottom:0;
line-height: 1;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
max-width: 170px;
}
}
.contacts{
li{
padding: 7px 1rem;
border-bottom: 1px solid #eee;
cursor: pointer;
@at-root [data-theme-version="dark"] & {
border-color: $d-border;
}
& > div{
display:flex;
align-items:center;
}
&:hover{
background:#f4f7ff;
@at-root [data-theme-version="dark"] & {
background-color: $d-bg;
}
}
}
.name-first-letter{
background: $body-bg;
padding: 4px 1rem;
font-weight: 700;
color: #000;
position: sticky;
top: 0;
z-index: 1;
@at-root [data-theme-version="dark"] & {
color: $white;
background:$d-bg;
}
}
}
.msg_card_body{
height: calc(100vh - 195px);
}
.contacts_body{
height: calc(100vh - 120px);
}
.card-header{
background:#f4f7ff;
padding: 15px 20px;
justify-content: center;
h6{
font-size:15px;
}
p{
line-height:1.2;
font-size:12px;
color: $body-color;
}
}
.chat-list-header{
justify-content: space-between;
background: #fff;
@at-root [data-theme-version="dark"] & {
background: $dark-card;
}
a{
text-align: center;
width: 30px;
height: 30px;
background: $body-bg;
border-radius: 6px;
line-height: 30px;
display: block;
@at-root [data-theme-version="dark"] & {
background:$primary-opacity;
svg g [fill]{
fill:$white;
}
}
}
}
.img_cont_msg {
width: 30px;
height: 30px;
display: block;
max-width: 30px;
min-width: 30px;
img{
width:100%;
}
}
.msg_cotainer {
background: $primary;
margin-left: 10px;
border-radius: 0 $radius $radius $radius;
padding: 10px 15px;
color:#fff;
position:relative;
.msg_time{
display: block;
font-size: 11px;
color: #fff;
margin-top: 5px;
opacity: 0.5;
}
&:after{
content: "";
position: absolute;
left: -10px;
border-right: 10px solid $primary;
border-bottom: 10px solid transparent;
border-top: 0px solid;
top: 0;
}
}
.msg_cotainer_send {
background: $body-bg;
padding: 10px 15px;
border-radius: 6px 0px 6px 6px;
margin-right: 10px;
color: #222;
position: relative;
text-align: right;
@at-root [data-theme-version="dark"] & {
background:$d-bg;
color:$white;
}
.msg_time_send {
display: block;
font-size: 11px;
text-align: right;
margin-top: 5px;
opacity: 0.6;
}
&:after{
content: "";
position: absolute;
right: -10px;
border-left: 10px solid $body-bg;
border-bottom: 10px solid transparent;
border-top: 0px solid;
top: 0;
@at-root [data-theme-version="dark"] & {
border-left: 10px solid $d-bg;
}
}
}
.type_msg{
.form-control{
padding: 10px 0;
height: 50px;
border: 0;
resize: none;
}
.btn{
font-size: 18px;
border-radius: 38px !important;
width: 38px;
height: 38px;
padding: 0;
margin-top: 6px;
}
}
.video_cam{
margin-left:15px;
span{
width: 35px;
height: 35px;
background: #10ca93;
text-align: center;
line-height: 35px;
border-radius: 35px;
color: #fff;
margin-right: 5px;
align-self: center;
font-size: 16px;
padding: 0 3px;
display: inline-block;
}
}
.note_card{
.contacts li{
padding: 12px 1rem;
}
}
}
@include custommq($max: 576px) {
.chatbox{
width: 280px;
.chatbox-close{
right: 280px
}
}
}

View File

@ -0,0 +1,432 @@
//common mega-menu styles
[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle,
[data-sidebar-style="mini"][data-layout="vertical"] {
.deznav {
.metismenu {
&>li {
&.mega-menu {
&> ul.collapse:not(.in) {
height: 252px !important;
}
&:hover {
&>a {
width: calc(70vw + 3.75rem);
}
&>ul {
display: flex;
flex-wrap: wrap;
flex-direction: column;
max-height: 13.75rem;
width: 70vw;
ul a {
width: 101%;
}
}
}
&-xl {
&:hover {
&>a {
width: calc(70vw + 3rem);
}
&>ul {
max-height: 200px;
width: 70vw;
ul a {
width: 101%;
}
}
}
}
&-lg {
&:hover {
&>a {
width: calc(55vw + 3rem);
}
&>ul {
max-height:200px;
width: 55vw;
ul a {
width: 101%;
}
}
}
}
&-md {
&:hover {
&>a {
width: calc(45vw + 3);
}
&>ul {
max-height: 18.75rem;
width: 45vw;
ul a {
width: 101%;
}
}
}
}
&-sm {
&:hover {
&>a {
width: calc(30vw + 3);
}
&>ul {
max-height: 18.125rem;
width: 30vw;
ul a {
width: 101%;
}
}
}
}
}
}
}
}
}
[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] {
.deznav {
.metismenu {
&>li {
&.mega-menu {
&:hover {
&>a {
width: calc(60vw + 3.75rem);
}
&>ul {
display: flex;
flex-wrap: wrap;
flex-direction: column;
max-height: 25rem;
width: 60vw;
ul a {
width: 101%;
}
}
}
&-xl {
&:hover {
&>a {
width: calc(60vw + 3.75rem);
}
&>ul {
max-height: 25.625rem;
width: 60vw;
}
}
}
&-lg {
&:hover {
&>a {
width: calc(50vw + 3.75rem);
}
&>ul {
max-height: 16.25rem;
width: 50vw;
}
}
}
&-md {
&:hover {
&>a {
width: calc(40vw + 3.75rem);
}
&>ul {
max-height: 18.75rem;
width: 40vw;
}
}
}
&-sm {
&:hover {
&>a {
width: calc(22vw + 3.75rem);
}
&>ul {
max-height: 18.125rem;
width: 22vw;
}
}
}
}
}
}
}
}
//mega menu for horizontal layout
[data-layout="horizontal"] {
.deznav {
.metismenu {
&>li {
&.mega-menu {
&:not(:last-child) {
position: static;
}
ul {
left: 0;
right: 0;
li {
@at-root [data-theme-version="dark"]#{&} {
border-color: $d-border;
}
@at-root [data-sibebarbg="color_2"]#{&} {
border-color: darken($color_pallate_2, 20%);
}
@at-root [data-sibebarbg="color_3"]#{&} {
border-color: darken($color_pallate_3, 20%);
}
@at-root [data-sibebarbg="color_4"]#{&} {
border-color: darken($color_pallate_4, 20%);
}
@at-root [data-sibebarbg="color_5"]#{&} {
border-color: darken($color_pallate_5, 20%);
}
@at-root [data-sibebarbg="color_6"]#{&} {
border-color: darken($color_pallate_6, 20%);
}
@at-root [data-sibebarbg="color_7"]#{&} {
border-color: darken($color_pallate_7, 20%);
}
@at-root [data-sibebarbg="color_8"]#{&} {
border-color: darken($color_pallate_8, 20%);
}
@at-root [data-sibebarbg="color_9"]#{&} {
border-color: darken($color_pallate_9, 20%);
}
@at-root [data-sibebarbg="color_10"]#{&} {
border-color: darken($color_pallate_10, 20%);
}
a {
transition: all .4s ease-in-out;
&:hover {
border-radius: 0.25rem;
}
}
}
}
&:hover {
&>ul {
display: flex;
flex-wrap: wrap;
flex-direction: column;
max-height: 13.75rem;
width: 70vw;
z-index: 99;
&::after {
content: "";
height: 100%;
width: 1px;
position: absolute;
background-color: $white;
right: 2.8125rem;
top: 0;
@at-root [data-theme-version="dark"]#{&} {
background-color: lighten($color: $d-bg, $amount: 3.2%);
}
@at-root [data-sibebarbg="color_2"]#{&} {
background-color: darken($color_pallate_2, 10%);
}
@at-root [data-sibebarbg="color_3"]#{&} {
background-color: darken($color_pallate_3, 10%);
}
@at-root [data-sibebarbg="color_4"]#{&} {
background-color: darken($color_pallate_4, 10%);
}
@at-root [data-sibebarbg="color_5"]#{&} {
background-color: darken($color_pallate_5, 10%);
}
@at-root [data-sibebarbg="color_6"]#{&} {
background-color: darken($color_pallate_6, 10%);
}
@at-root [data-sibebarbg="color_7"]#{&} {
background-color: darken($color_pallate_7, 10%);
}
@at-root [data-sibebarbg="color_8"]#{&} {
background-color: darken($color_pallate_8, 10%);
}
@at-root [data-sibebarbg="color_9"]#{&} {
background-color: darken($color_pallate_9, 10%);
}
@at-root [data-sibebarbg="color_10"]#{&} {
background-color: darken($color_pallate_10, 10%);
}
}
ul a {
width: 101%;
}
}
}
&-xl {
&:hover {
&>ul {
max-height: 210px;
width: 70vw;
}
}
}
&-lg {
&:hover {
&>ul {
max-height: 210px;
width: 700px;
height: 210px !important;
@include custommq($min: 1200px, $max: 1500px) {
width: 700px;
}
}
}
}
&-md {
&:hover {
&>ul {
max-height: 20rem;
width: 54vw;
@include custommq($min: 1200px, $max: 1500px) {
width: 60vw;
}
}
}
}
&-sm {
&:hover {
&>ul {
max-height: 20rem;
width: 25vw;
@include custommq($min: 1200px, $max: 1500px) {
width: 35vw;
}
}
}
}
}
}
}
}
}
[data-layout="horizontal"][data-container="boxed"] {
.deznav {
.metismenu {
&>li {
&.mega-menu {
&:hover {
&>ul {
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
}
&-xl {
&:hover {
&>ul {
max-height: 21.875rem;
width: 100%;
}
}
}
&-lg {
&:hover {
&>ul {
max-height: 21.875rem;
width: 55vw;
}
}
}
&-md {
&:hover {
&>ul {
max-height: 18.75rem;
width: 45vw;
}
}
}
&-sm {
&:hover {
&>ul {
max-height: 18.125rem;
width: 50vw;
}
}
}
}
}
}
}
}

View File

@ -0,0 +1,3 @@
[data-sibebarbg="image_3"] {
}

View File

@ -0,0 +1,162 @@
////////////////
// Compact Nav
////////////////
@media (min-width:767px) {
[data-sidebar-style="compact"] {
.deznav {
.nav-user{
display: none;
}
.metismenu {
& > li{
& > a{
padding:1.5rem 1.625rem 1.5rem 1.5rem;
}
ul{
padding:1rem 0;
li > a{
padding:0.5rem 1rem;
&.has-arrow:after{
content: "";
}
}
}
}
li {
text-align: center;
a {
svg{
max-width: 21px;
max-height: 21px;
display: block;
margin-left: auto;
margin-right: auto;
}
i{
font-size:2.2rem;
}
&:after{
content:none;
}
&:before{
content: "";
height: 75px;
width: 0;
position: absolute;
left: 0;
top: 50%;
transform:translatey(-50%);
background: $primary;
border-radius:0 $radius $radius 0;
@include transitionMedium;
}
}
ul:after{
content:none;
}
&.mm-active,
&:hover{
& > a{
background: -moz-linear-gradient(left, rgba(224,224,228,1) 0%, rgba(125,185,232,0) 100%);
background: -webkit-linear-gradient(left, rgba(224,224,228,1) 0%,rgba(125,185,232,0) 100%);
background: linear-gradient(to right, rgba(224,224,228,1) 0%,rgba(125,185,232,0) 100%);
&:before{
width:10px;
}
}
}
}
}
}
.nav-text {
display: inline-block;
margin-top: 0.7125rem;
}
.nav-label {
&.first{
display: none;
}
}
.nav-badge {
display: none;
}
.footer {
padding-left: 9.375rem;
}
.content-body {
margin-left: 15rem;
}
}
}
[data-layout="horizontal"][data-sidebar-style="compact"] {
.footer {
padding-left: 0;
}
.content-body {
margin-left:0;
}
.deznav .metismenu{
padding: 0 30px;
}
}
[data-layout="vertical"][data-sidebar-style="compact"] {
.deznav {
width: 15rem;
.metismenu {
ul{
background: rgba(0,0,0,0.02);
@at-root [data-theme-version="dark"]#{&} {
background:(255, 255, 255, 0.05);
}
a{
&:before{
content:none;
}
}
ul a {
padding: 0.625rem 0.9375rem;
}
}
&>li {
&>a.has-arrow::after {
top: 1px;
display: inline-block;
right: auto;
margin-left: 5px;
position: relative;
width: 7px;
height: 7px;
border-width: 2px 0px 0px 2px;
@at-root [direction="rtl"]#{&} {
left: auto;
margin-left: 0;
margin-right: 5px;
}
}
}
}
}
}

View File

@ -0,0 +1,269 @@
@import "../../abstracts/variable";
@import "../../abstracts/mixin";
[data-sidebar-style="full"][data-layout="vertical"] {
.deznav{
.metismenu{
& > li{
padding: 0 0 0 40px;
& > a{
font-size: 16px;
padding: 20px 20px;
border-top-left-radius: $radius;
border-bottom-left-radius: $radius;
@include transitionMedium;
position:relative;
@include respond('laptop') {
padding: 20px 20px;
font-size: 16px;
}
&:before{
height:100%;
position:absolute;
border-radius:4px;
width:6px;
background:$primary;
top:0;
right:0;
opacity: 0;
content:"";
@include transitionMedium;
}
}
&.mm-active{
& > a{
color:$primary;
background:rgba($primary,0.1);
i{
color: $primary;
}
&:before{
opacity: 1;
}
}
}
.has-arrow:after{
right: 2.5rem;
@include respond('laptop') {
right: 1.5rem;
}
}
@include respond ('laptop'){
padding: 0 0 0 20px;
}
}
}
}
.menu-toggle {
.nav-header {
width: 5rem;
z-index: 999;
.brand-logo {
padding-left: 0;
padding-right: 0;
justify-content: center;
}
.nav-control {
.hamburger {
.line {
background-color: $primary!important;
}
}
}
}
.copyright,
.add-menu-sidebar{
display:none;
}
.header {
padding-left: 6rem;
width: 100%;
@at-root [direction="rtl"]#{&} {
padding: 0 0.9375rem;
padding-right: 5rem;
}
}
.deznav {
width: 5rem;
overflow: visible;
position: absolute;
.nav-text {
display: none;
}
.slimScrollDiv,
.deznav-scroll {
overflow: visible !important;
}
.metismenu {
li {
position: relative;
a {
padding: 13px;
border-radius:$radius;
margin:2px 0;
svg{
max-width: 24px;
max-height: 24px;
margin-right: 0;
}
&:before{
content:none;
}
}
&>ul {
position: absolute;
left: 5rem;
top: 0;
width: 12rem;
z-index: 1001;
display: none;
padding-left: 1px;
height: auto !important;
box-shadow: 0px 0px 40px 0px rgba(82, 63, 105, 0.1);
border-radius: 6px;
margin-left: 0;
border:0;
background:$white;
&:after{
content: "";
position: absolute;
background: inherit;
width: 10px;
height: 10px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-moz-transform: rotate(45deg);
left: -5px;
top: 20px;
}
@at-root [direction="rtl"]#{&} {
left: auto;
right: 3rem;
// box-shadow: -6px 6px 10px rgba(0, 0, 0, 0.15);
}
li:hover {
ul {
// display: block;
left: 11.8125rem;
top: 0;
&:after{
content:none;
}
}
}
}
&:hover>ul {
display: block;
height: auto;
overflow: visible;
}
}
&>li {
transition: all 0.4s ease-in-out;
padding: 0 13px;
&>a {
text-align: center;
&.has-arrow {
&:after {
display: none;
}
}
i{
padding: 0;
width: auto;
height: auto;
background: transparent;
margin:0;
line-height: 1;
}
}
&.mm-active > a{
background:$primary;
border-radius:$radius;
color:$white;
i{
color: $white;
padding: 0;
}
}
&:hover{
&:nth-last-child(-n + 1) {
&>ul {
bottom: 0;
top: auto;
}
}
&>a {
border-radius: $radius;
background:$primary;
color:$white;
@at-root [data-theme-version="dark"]#{&} {
background:$dark-card;
}
i{
color: $white;
}
}
&>ul {
height: auto !important;
padding: 10px 0;
a {
padding: 6px 20px 6px 20px;
margin-left: -.1rem;
}
ul{
padding: 10px 0;
a {
padding: 6px 20px 6px 20px;
margin-left: -.1rem;
}
}
}
}
}
.nav-label,
.nav-badge {
display: none;
}
}
}
.content-body {
margin-left: 5rem;
@at-root [direction="rtl"]#{&} {
margin-right: 5rem;
margin-left: auto;
border: 0;
}
}
&+.footer {
padding-left: 5rem;
@at-root [direction="rtl"]#{&} {
padding-left: 0;
padding-right: 5rem;
}
}
}
}
[data-sidebar-style="full"][data-layout="horizontal"] {
.deznav .metismenu{
padding: 0 30px;
}
.header .header-content{
padding-left: 1.875rem;
}
}

View File

@ -0,0 +1,349 @@
///////////////////////////
// Nav Profile
///////////////////////////
.nav-label {
margin: 10px 30px 0;
padding: 1.5625rem 0 10px;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.05rem;
border-top: 1px solid $l-border;
color:$dusty-gray;
@at-root [data-theme-version="dark"] & {
border-color: $d-border;
}
&.first {
border: 0px;
margin-top: 0px;
}
}
.nav-badge {
position: absolute;
right: 2.8125rem;
top: 0.625rem;
}
.content-body {
margin-left: 21.563rem;
z-index: 0;
transition: all .2s ease;
@include custommq($min: 1200px, $max: 1400px) {
margin-left: 17rem;
}
}
// Bell //
.bell img{
-webkit-animation: ring 8s .7s ease-in-out infinite;
-webkit-transform-origin: 50% 4px;
-moz-animation: ring 8s .7s ease-in-out infinite;
-moz-transform-origin: 50% 4px;
animation: ring 8s .7s ease-in-out infinite;
}
// bell //
@-webkit-keyframes ring {
0% { -webkit-transform: rotateZ(0); }
1% { -webkit-transform: rotateZ(30deg); }
3% { -webkit-transform: rotateZ(-28deg); }
5% { -webkit-transform: rotateZ(34deg); }
7% { -webkit-transform: rotateZ(-32deg); }
9% { -webkit-transform: rotateZ(30deg); }
11% { -webkit-transform: rotateZ(-28deg); }
13% { -webkit-transform: rotateZ(26deg); }
15% { -webkit-transform: rotateZ(-24deg); }
17% { -webkit-transform: rotateZ(22deg); }
19% { -webkit-transform: rotateZ(-20deg); }
21% { -webkit-transform: rotateZ(18deg); }
23% { -webkit-transform: rotateZ(-16deg); }
25% { -webkit-transform: rotateZ(14deg); }
27% { -webkit-transform: rotateZ(-12deg); }
29% { -webkit-transform: rotateZ(10deg); }
31% { -webkit-transform: rotateZ(-8deg); }
33% { -webkit-transform: rotateZ(6deg); }
35% { -webkit-transform: rotateZ(-4deg); }
37% { -webkit-transform: rotateZ(2deg); }
39% { -webkit-transform: rotateZ(-1deg); }
41% { -webkit-transform: rotateZ(1deg); }
43% { -webkit-transform: rotateZ(0); }
100% { -webkit-transform: rotateZ(0); }
}
@-moz-keyframes ring {
0% { -moz-transform: rotate(0); }
1% { -moz-transform: rotate(30deg); }
3% { -moz-transform: rotate(-28deg); }
5% { -moz-transform: rotate(34deg); }
7% { -moz-transform: rotate(-32deg); }
9% { -moz-transform: rotate(30deg); }
11% { -moz-transform: rotate(-28deg); }
13% { -moz-transform: rotate(26deg); }
15% { -moz-transform: rotate(-24deg); }
17% { -moz-transform: rotate(22deg); }
19% { -moz-transform: rotate(-20deg); }
21% { -moz-transform: rotate(18deg); }
23% { -moz-transform: rotate(-16deg); }
25% { -moz-transform: rotate(14deg); }
27% { -moz-transform: rotate(-12deg); }
29% { -moz-transform: rotate(10deg); }
31% { -moz-transform: rotate(-8deg); }
33% { -moz-transform: rotate(6deg); }
35% { -moz-transform: rotate(-4deg); }
37% { -moz-transform: rotate(2deg); }
39% { -moz-transform: rotate(-1deg); }
41% { -moz-transform: rotate(1deg); }
43% { -moz-transform: rotate(0); }
100% { -moz-transform: rotate(0); }
}
@keyframes ring {
0% { transform: rotate(0); }
1% { transform: rotate(30deg); }
3% { transform: rotate(-28deg); }
5% { transform: rotate(34deg); }
7% { transform: rotate(-32deg); }
9% { transform: rotate(30deg); }
11% { transform: rotate(-28deg); }
13% { transform: rotate(26deg); }
15% { transform: rotate(-24deg); }
17% { transform: rotate(22deg); }
19% { transform: rotate(-20deg); }
21% { transform: rotate(18deg); }
23% { transform: rotate(-16deg); }
25% { transform: rotate(14deg); }
27% { transform: rotate(-12deg); }
29% { transform: rotate(10deg); }
31% { transform: rotate(-8deg); }
33% { transform: rotate(6deg); }
35% { transform: rotate(-4deg); }
37% { transform: rotate(2deg); }
39% { transform: rotate(-1deg); }
41% { transform: rotate(1deg); }
43% { transform: rotate(0); }
100% { transform: rotate(0); }
}
// 38px + 60px
///////////////
// Sidebar
//////////////
.deznav {
width: 21.563rem;
padding-bottom: 0;
height:100%;
position: absolute;
top: 0;
padding-top: 120px;
z-index: 4;
background-color: $white;
box-shadow: 0px 0px 10px rgba(120, 130, 140, 0.13);
transition: all .2s ease;
// border-top-left-radius: 5px;
// border-top-right-radius: 5px;
//box-shadow: 18px 0px 35px 0px rgba(0, 0, 0, 0.02);
@include respond('tab-land') {
padding-top:80px;
}
@include respond('phone-land') {
width: 18rem;
}
// @include respond('big-desktop') {
// left: 6rem;
// }
.deznav-scroll {
position: relative;
height: 100%;
// overflow: visible!important;
// border-top-left-radius: 5px;
// border-top-right-radius: 5px;
}
@include custommq($min: 1200px, $max: 1400px) {
width: 17rem;
}
ul {
padding: 0;
margin: 0;
list-style: none;
}
.metismenu {
display: flex;
flex-direction: column;
padding-top: 15px;
@include respond('phone-land') {
padding-top: 0;
}
&.fixed {
position: fixed;
top: 0;
width: 100%;
left: 0;
}
&>li {
display: flex;
flex-direction: column;
a {
&>i {
//icon will get color from parent "a"
font-size: 1.4rem;
display: inline-block;
vertical-align: middle;
//padding: 0 1.5rem 0 0;
position: relative;
top: 0;
height:auto;
width:auto;
border-radius:$radius;
line-height: 1;
text-align:center;
@include transitionMedium;
margin-right: 15px;
@at-root [data-sidebar-style="compact"] & {
display:block;
padding:0;
}
@include custommq($max:1300px){
height:auto;
width:auto;
margin-right:0;
line-height:1;
padding:0;
}
@include respond('phone-land') {
font-size: 1.25rem;
padding: 0 .75rem 0 0;
margin-right: 0px;
}
}
}
&>a {
font-weight: 500;
display: inline-block;
font-size: 15px;
svg {
max-width: 24px;
max-height: 24px;
height: 100%;
margin-right:5px;
margin-top: -3px;
color: $primary;
}
g [fill] {
fill: $primary;
}
}
&:hover,
&:focus {
&>a {
// background-color: lighten($color: $primary, $amount: 40%);
color: $primary;
g [fill] {
fill: $primary;
}
// &::after {
// border-color: blue;
// }
}
}
&.mm-active {
&>a {
color: $primary;
g [fill] {
fill: $primary;
}
}
}
}
li {
position: relative;
}
//one step dropdown
ul {
//background-color: darken($color: $white, $amount: 2%);
transition: all .2s ease-in-out;
position:relative;
z-index: 1;
padding: 5px 0;
a {
padding-top: .5rem;
padding-bottom: .5rem;
position: relative;
font-size: 16px;
padding-left: 3.9rem;
@include respond('laptop') {
padding-left: 3.9rem;
font-size: 14px;
}
@include respond('phone-land') {
padding-left: 3.5rem;
}
&:hover,
&:focus,
&.mm-active {
text-decoration: none;
color: $primary;
}
}
}
a {
position: relative;
display: block;
padding: 0.625rem 1.875rem;
outline-width: 0;
color: rgba($color: $body-color, $alpha: 1);
text-decoration: none;
@include respond('phone-land') {
padding: 0.625rem 1.25rem;
}
}
.has-arrow {
&:after {
width: .5rem;
height: .5rem;
right: 1.875rem;
top: 48%;
border-color: inherit;
-webkit-transform: rotate(-225deg) translateY(-50%);
transform: rotate(-225deg) translateY(-50%);
}
}
.has-arrow[aria-expanded=true]:after,
.mm-active>.has-arrow:after {
-webkit-transform: rotate(-135deg) translateY(-50%);
transform: rotate(-135deg) translateY(-50%);
}
}
}
// .metismenu .mm-active>.has-arrow:after, .metismenu .has-arrow[aria-expanded=true]:after {
// transform: rotate(45deg) translateY(-50%);
// }
.nav-header {
@include respond('tab-land'){
width: 5rem;
}
}
@media (max-width:767px) {
.brand-title {
display: none;
}
.footer {
padding-left: 0;
}
.deznav {
left: 0;
top: 5rem;
padding-top: 1rem;
}
}

View File

@ -0,0 +1,383 @@
@import "../../abstracts/variable";
////////////////////
// Horizontal Nav
////////////////////
@media (min-width: 1199px) {
[data-layout="horizontal"] {
.nav-header {
width: 16rem;
.nav-control {
display: none;
}
.brand-logo {
/* padding-left: 0;
justify-content: center; */
}
}
.header {
width: 100%;
padding-left: 16rem;
}
.deznav {
width: 100%;
position: relative;
height: auto;
padding-bottom: 0;
top: 0;
z-index: 2;
.slimScrollDiv {
overflow: visible!important;
.deznav-scroll {
overflow: visible!important;
}
}
.deznav-scroll {
overflow: visible!important;
}
.slimScrollBar {
display: none !important;
}
.nav-user,
.nav-label {
display: none;
}
.metismenu {
flex-direction: row;
.collapse.in {
display: none;
}
ul{
border-left:0;
@at-root [data-theme-version="dark"]#{&} {
box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.1);
}
}
li {
flex-direction: column;
position: relative;
&:hover {
&>ul {
display: block;
}
}
&>ul {
position: absolute;
height: auto !important;
top: 3.25rem;
width: 100%;
min-width: 13.75rem;
z-index: 999;
left: auto;
right: auto;
padding: 0.5rem 0;
display: none;
box-shadow: 0px 0px 40px 0px rgba(82, 63, 105, 0.1);
margin:0;
background:$white;
@at-root [data-theme-version="dark"]#{&} {
box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.1);
}
li {
padding: 0;
a {
transition: all .4s ease-in-out;
padding: 8px 20px 8px 45px;
margin-left: -.1rem;
@at-root [direction="rtl"]#{&} {
padding: 8px 45px 8px 20px;
text-align: right;
}
&:hover {
border-radius: .4rem;
}
&:before{
left: 22px;
@at-root [direction="rtl"]#{&} {
left: auto;
right: 21px;
}
}
}
}
ul {
left: 100%;
top: 0;
box-shadow: 0px 10px 13px 0px rgba(82, 63, 105, 0.05);
@at-root [direction="rtl"]#{&} {
left: auto;
right: 100%;
}
}
}
}
&>li {
flex: 0 0 auto;
position: relative;
@at-root [data-theme-version="dark"]#{&} {
border-color: rgba(255,255,255,0.07);
&.mm-active{
border-color:transparent;
}
}
&.mm-active{
padding:0;
& > a{
background: #fff;
box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
}
}
@at-root [direction="rtl"]#{&} {
//&:not(:first-child) {
// border-right: lighten($color: $color-pallate-2, $amount: 10%);
//}
&:first-child {
border-right: 0;
}
@at-root [data-theme-version="dark"]#{&} {
border-color: $d-border;
}
}
&>a {
padding: 15px 40px 15px 15px;
@at-root [direction="rtl"]#{&} {
padding: 15px 15px 15px 40px;
}
i{
padding: 0 0.4375rem 0 0;
@at-root [direction="rtl"]#{&} {
padding: 0 0 0 0.4375rem;
}
}
.nav-badge {
display: none;
}
&:after {
right: 20px;
transform: rotate(-135deg) translateY(-50%);
}
}
&:hover {
border-color:transparent;
&>ul {
display: flex !important;
flex-direction: column;
flex-wrap: wrap;
height: auto !important;
box-shadow: 0px 10px 13px 0px rgba(82, 63, 105, 0.05);
@at-root [data-theme-version="dark"]#{&} {
box-shadow: 0px 0 13px 0px rgba(0, 0, 0, 0.1);
}
}
}
&>ul {
&>li {
&:hover {
ul.collapse {
display: block!important;
position: absolute;
left: auto!important;
right: -100%!important;
top: 0!important;
}
}
}
}
&:nth-last-child(-n + 5) {
&>ul {
left: auto;
right: 0;
&>li {
&:hover {
ul.collapse {
right: auto!important;
left: -100%!important;
}
}
}
}
}
&:last-child {
&>ul {
ul {
left: -100%;
}
}
}
@at-root [direction="rtl"]#{&} {
&:nth-last-child(-n + 3) {
&>ul {
left: 0;
right: auto;
&>li {
&:hover {
ul.collapse {
right: -100% !important;
left: auto !important;
}
}
}
}
}
}
}
}
}
.content-body {
margin-left: 0;
.page-titles {
margin-left: 0;
margin-right: 0;
margin-bottom: 1.875rem;
}
}
.footer {
margin-left: 0;
margin: 0 auto;
padding-left: 0;
}
.sidebar-right {
z-index: 1;
}
}
[data-header-position="fixed"][data-layout="horizontal"] {
.deznav {
top: 5rem;
}
} //ok
[data-header-position="fixed"][data-sidebar-position="fixed"] {
.deznav {
position: fixed;
}
} //ok
[data-header-position="fixed"][data-layout="horizontal"][data-sidebar-position="fixed"] {
.content-body {
padding-top: 8.3rem;
}
} //ok
[data-layout="horizontal"][data-container="boxed"] {
.footer {
margin-left: 0;
max-width: 1199px;
margin: 0 auto;
}
}
[data-layout="horizontal"][data-container="wide"] {
.page-titles {
margin-left: -30px;
margin-right: -30px;
}
}
[data-layout="horizontal"][data-sidebar-style="compact"] {
.page-titles {
margin-top: 0;
}
.deznav {
.metismenu {
&>li {
&>ul {
top: 4.315rem;
}
&>a {
padding: 0.8125rem 2.1rem;
&::after {
display: none;
}
}
li {
text-align: left;
}
}
}
}
}
[data-sidebar-style="mini"][data-layout="horizontal"] {
.nav-header {
width: 6rem;
padding-left: 30px;
padding-right: 30px;
.brand-logo {
justify-content: start;
}
}
.header {
width: 100%;
padding-left: 6rem;
}
.metismenu {
&>li {
&:hover {
a {
width: auto;
.nav-text {
display: none;
}
}
}
}
}
}
[data-header-position="fixed"][data-layout="horizontal"][data-sidebar-position="fixed"][data-sidebar-style="compact"] {
.content-body {
padding-top: 8.75rem;
}
}
[data-sidebar-position="fixed"][data-layout="horizontal"] {
.deznav.fixed {
position: fixed;
left: 0;
top: 0;
}
}
}

View File

@ -0,0 +1,189 @@
@media (min-width: 767px) {
[data-sidebar-style="icon-hover"][data-layout="horizontal"] {
.metismenu {
padding: 0 30px;
}
.header .header-content {
padding-left: 1.875rem;
}
}
[data-sidebar-style="icon-hover"][data-layout="vertical"] {
.nav-header {
width: 5.063rem;
.brand-logo {
padding-left: 20px;
@at-root [direction="rtl"]#{&} {
padding-left:1.25rem;
padding-right:1.25rem;
}
.logo-abbr {
display: block;
}
.brand-title {
display: none;
}
}
.nav-control {
display: none;
}
}
.header {
padding-left: 5.063rem;
@at-root [direction="rtl"]#{&} {
padding-right: 4.38rem;
padding-left: 0.9375rem;
}
.header-content {
padding-left: 1.375rem;
@at-root [direction="rtl"]#{&} {
padding-right: 1.375rem;
padding-left: 0;
}
}
}
.deznav {
overflow: visible;
position: absolute;
left: -12.125rem;
// z-index: 1;
@include custommq($min: 1200px, $max: 1350px) {
left: -10rem;
}
@at-root [direction="rtl"]#{&} {
left: auto;
right: -12.125rem;
}
.nav-label {
display: none;
}
.metismenu {
&>li {
&>a {
display: flex;
justify-content: space-between;
&>svg,
&>i {
order: 1;
margin-right:0;
margin-top:0;
}
}
}
ul {
border-left: 0;
padding-left:0;
padding-right:28px;
@at-root [direction="rtl"]#{&} {
padding-right:0;
padding-left:28px;
}
@at-root [data-theme-version="dark"]#{&} {
border-color:$d-border;
}
&:after{
left:auto;
right:28px;
@at-root [direction="rtl"]#{&} {
left:28px;
right:auto;
}
}
a {
position: relative;
&::before {
left: auto;
right: -5px;
@at-root [direction="rtl"]#{&} {
right: auto;
left:-5px;
}
}
}
}
.has-arrow {
&::after {
right: 5rem;
@at-root [direction="rtl"]#{&} {
right: auto;
left: 5rem;
}
}
}
}
}
.icon-hover-toggle {
.nav-header {
width: 17.1875rem;
.brand-logo {
padding-left: 1.6rem;
.brand-title {
display: block;
}
}
}
.header {
padding-left: 4.38rem;
@at-root [direction="rtl"]#{&} {
padding-right: 4.38rem;
padding-left: 0.9375rem;
}
}
.deznav {
left: 0;
@at-root [direction="rtl"]#{&} {
left: auto;
right: 0;
}
}
}
.content-body {
margin-left: 5rem;
@at-root [direction="rtl"]#{&} {
margin-left: 0;
margin-right: 5rem;
}
}
.footer {
padding-left: 4.375rem;
@at-root [direction="rtl"]#{&} {
margin-left: 0;
margin-right: 4.375rem;
}
}
}
}

View File

@ -0,0 +1,311 @@
@import "../../abstracts/_mixin";
@import "../../abstracts/_variable";
@include custommq($min: 768px) {
[data-sidebar-style="mini"] {
.nav-header {
width: 5rem;
.nav-control {
z-index: -1;
.hamburger{
left: 5rem!important;
.line{
background-color: $dark!important;
}
}
}
.brand-title {
display: none;
}
.hamburger {
display: none;
}
}
.header .header-content{
padding-left: 1.875rem;
@at-root [direction="rtl"]#{&}{
padding-right: 1.875rem;
}
}
.deznav {
width: 5rem;
overflow: visible;
position: absolute!important;
.copyright,
.add-menu-sidebar{
display:none;
}
.nav-text {
display: none;
}
.slimScrollDiv,
.deznav-scroll {
overflow: visible !important;
}
.nav-user{
padding: 11px;
.media-body{
display: none;
}
}
.metismenu {
li {
a {
padding: 0.813rem 0.875rem;
svg{
margin-right:0;
}
}
&>ul {
position: absolute;
left: 5rem;
top: 2.9375rem;
width: 11.875rem;
z-index: 1001;
display: none;
padding-left: 1px;
box-shadow: 0px 0px 40px 0px rgba(82, 63, 105, 0.1);
height: auto !important;
border-radius: 6px;
background: #fff;
@at-root [direction="rtl"]:not([data-layout="horizontal"])#{&} {
left: auto;
right: 5rem;
box-shadow: -6px 6px 10px rgba(0, 0, 0, 0.15);
}
}
}
&>li {
padding: 2px 15px;
&>a {
&.has-arrow {
&:after {
display: none;
}
}
}
}
.nav-label,
.nav-badge {
display: none;
}
}
}
.content-body {
margin-left: 5rem;
}
.footer {
padding-left: 5rem;
}
}
[data-sidebar-style="mini"][data-layout="vertical"] {
.deznav {
.metismenu {
li {
&:hover>ul {
display: block;
}
}
&>li {
&:nth-last-child(-n + 1) {
&>ul {
bottom:0;
top: auto !important;
&:after{
top:auto;
bottom:20px;
}
}
}
@include respond('tab-land') {
&:nth-last-child(-n + 1) {
&>ul {
bottom: 0;
top: auto !important;
}
}
}
&>ul {
overflow: visible;
&:after{
content:none;
}
li:hover {
ul {
padding: 10px 0;
width: 13rem;
left: 13rem;
top: -10px;
border: 0;
margin: 0;
&:after{
content:none;
}
@at-root [direction="rtl"]#{&}{
left: auto;
right: 13rem;
}
}
}
}
&.mm-active {
&>a {
background: $primary;
color:$white;
border-radius: $radius;
@at-root [data-theme-version="dark"]#{&} {
background: $dark-card;
}
}
}
&:hover {
&>a {
background: $primary;
color:$white;
border-radius: $radius;
position: unset;
@at-root [data-theme-version="dark"]#{&} {
background: $dark-card;
}
.nav-text {
@at-root [direction="rtl"]#{&} {
padding-left: auto;
padding-right: 1.6875rem;
}
}
}
&>ul {
height: auto !important;
overflow: visible;
border:0;
margin-left:0;
left: 5rem;
width: 13rem;
border-radius:12px;
border:0;
padding: 10px 0;
top: 0;
&:after{
content: "";
position: absolute;
background: inherit;
width: 10px;
height: 10px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-moz-transform: rotate(45deg);
left: -5px;
top: 20px;
}
@at-root [data-theme-version="dark"]#{&} {
box-shadow: 0px 9px 10px 0px rgba(0, 0, 0, 0.1);;
}
@at-root [direction="rtl"]#{&} {
left: auto;
right: 5rem;
}
a {
padding: 6px 20px 6px 20px;
&:before{
content:none;
}
&.has-arrow:after{
right: 1.25rem
}
}
ul {
a {
padding: 6px 20px 6px 20px;
margin-left: -1.6px;
&:before{
content:none;
}
}
}
}
}
}
}
}
}
[data-sidebar-style="mini"][data-header-position="fixed"][data-container="boxed"][data-layout="vertical"] {
.header {
width: 1199px;
}
}
[data-sidebar-style="mini"][data-layout="horizontal"] {
.deznav .metismenu {
padding: 0 30px;
}
.deznav .metismenu > li > a {
padding: 15px 20px;
@at-root [direction="rtl"]#{&} {
padding: 15px 20px;
svg {
margin-left: 0;
}
}
svg{
margin-right: 0;
margin-top: 0;
}
}
}
}
@include respond('tab-land') {
[data-sidebar-style="mini"] {
.deznav {
li {
&.mm-active {
ul {
height: auto !important;
}
}
a.has-arrow {
&::after {
transform: rotate(-45deg) translateY(-50%);
}
}
}
}
}
}

View File

@ -0,0 +1,234 @@
@media (min-width:767px) {
[data-sidebar-style="modern"] {
.nav-header {
width: 9.375rem;
.brand-logo{
justify-content: center;
}
}
.deznav {
.metismenu {
&>li {
text-align: center;
&>a {
padding: 20px 15px 20px 15px!important;
// font-weight: 500;
&::after {
display: none;
}
&:hover,
&:focus,
&:active,
&.mm-active {
&>a {
background-color: lighten($color: $primary, $amount: 50%);
}
}
}
&.mm-active{
padding:0;
}
li {
text-align: left;
@at-root [direction="rtl"]#{&} {
text-align: right;
}
}
}
li {
a {
padding: 0.625rem 0.9375rem 0.625rem 0.9375rem;
}
ul:after{
content:none;
}
&>ul {
height: auto !important;
}
}
.nav-label{
display: none;
}
}
.nav-label {
display: none;
}
.nav-text {
display: block;
margin-top: 0.3125rem;
}
}
.footer {
padding-left: 9.375rem;
}
.content-body {
margin-left: 9.375rem;
}
}
[data-sidebar-style="modern"][data-layout="vertical"] {
.deznav {
width: 9.375rem;
left: 0;
@at-root [direction="rtl"]#{&} {
left: auto;
right: 0;
}
.slimScrollDiv,
.deznav-scroll {
overflow: visible !important;
}
.metismenu {
&>li {
&>a{
i{
font-size: 20px;
// height: 35px;
}
}
&>ul {
display: none;
padding: 1.875rem 0.9375rem;
}
}
li {
position: relative;
a {
padding:0.625rem 1.5rem;
&:before{
content:none;
}
}
ul {
position: absolute;
left: 105%;
top: 0;
bottom: auto;
background-color: $white;
border: 1px solid $border;
width: 200px;
// box-shadow: 2px 3px 10px 0px rgba(119, 119, 119, 0.1);
@at-root [data-theme-version="dark"]#{&} {
background:$dark-card;
box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
}
@at-root [direction="rtl"]#{&} {
left: auto;
right: 105%;
}
}
&:hover {
&>ul {
display: block;
left: 100%;
padding: 1rem 0;
margin-left: -10px;
border: 0;
box-shadow: 5px 0px 13px 0px rgba(82, 63, 105, 0.05);
@at-root [data-theme-version="dark"]#{&} {
box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
}
@at-root [direction="rtl"]#{&} {
left: auto;
right: 100%;
box-shadow: -5px 0px 13px 0px rgba(82, 63, 105, 0.05);
}
}
}
}
}
.nav-label {
display: none;
}
.nav-text {
display: block;
margin-top: 0;
}
}
.menu-toggle {
.deznav {
left: -9.375rem;
@at-root [direction="rtl"]#{&} {
left: auto;
right: -9.375rem;
}
}
.content-body {
margin-left: 0;
@at-root [direction="rtl"]#{&} {
margin-right: 0;
}
}
}
}
[data-sidebar-style="modern"][data-layout="horizontal"] {
.footer,
.content-body {
margin-left:0;
}
.deznav {
.metismenu {
padding: 0 30px;
&>li {
&>a {
padding: 0.8125rem 2.25rem;
}
&>ul {
top: 4.5625rem;
}
}
}
}
&[data-container="boxed"] {
.deznav {
.metismenu {
&>li {
&>a {
padding: 0.8125rem 1.25rem;
}
}
}
}
}
}
}

View File

@ -0,0 +1,49 @@
[data-sidebar-style="overlay"] {
.deznav {
left: -100%;
@at-root [direction="rtl"]#{&} {
left: auto;
right: -100%;
}
}
.content-body {
margin-left: 0;
}
.nav-header {
position: absolute;
.hamburger.is-active {
left: 0;
.line {
background-color: $primary;
}
}
}
.menu-toggle {
.nav-header {
position: absolute;
left: auto;
}
.deznav {
left: 0;
@at-root [direction="rtl"]#{&} {
left: auto;
right: 0;
}
}
}
.footer {
padding-left: 0;
}
}
[data-sidebar-style="overlay"][data-header-position="fixed"] {
.nav-header {
position: fixed;
}
}
[data-sidebar-position="fixed"][data-header-position="fixed"] {
.nav-header {
position: fixed;
}
}

View File

@ -0,0 +1,75 @@
///////////////////////////
// Sidebar profile
///////////////////////////
.nav-user {
// text-align: center;
background: $primary;
margin-bottom: 10px;
padding: 20px 25px 15px;
@include custommq($min: 768px, $max: 1199px) {
padding: 20px 15px 15px;
}
img {
width: 35px;
height: 35px;
@include custommq($min: 768px, $max: 1199px) {
width: 35px;
height: 35px;
margin-bottom: 10px;
}
}
h5 {
margin-left: 10px;
margin-bottom: 3px;
color: $white;
@include custommq($min: 768px, $max: 1199px) {
display: none;
}
@at-root [data-sibebarbg="color_2"] & {
color: $white;
}
}
p{
margin-left: 10px;
margin-bottom: 8px;
color: #afcff7;
@include custommq($min: 768px, $max: 1199px) {
display: none;
}
}
@include custommq($min: 768px, $max: 1199px) {
i{
margin-top: 15px;
display: block
}
}
}
.menu-toggle{
.nav-user {
padding: 20px 15px 15px;
img {
width: 35px;
height: 35px;
margin-bottom: 10px;
}
h5,
p {
display: none;
}
i {
margin-top: 15px;
display: block
}
.dropdown-menu {
left: 45px !important;
top: 22px !important;
}
}
}

View File

@ -0,0 +1,204 @@
// @import "../../abstracts/variable";
.sidebar-right {
// display: none;
right: -15.625rem;
position: fixed;
top: 0;
width: 15.625rem;
background-color: $white;
height: calc(100% - 7.0625rem);
margin-top: 5rem;
transition: all .5s ease-in-out;
padding-bottom: 1.875rem;
box-shadow: -2px 3px 10px 0px rgba(119, 119, 119, 0.1);
.slimScrollDiv {
@at-root [direction="rtl"] #{&} {
overflow: visible !important;
}
}
.sidebar-right-trigger {
position: absolute;
z-index: 9;
top: 4.75rem;
right: 100%;
background-color: $white;
color: $primary;
display: inline-block;
height: 3rem;
width: 3rem;
text-align: center;
font-size: 1.75rem;
line-height: 3rem;
border-radius: 5px 0 0 5px;
box-shadow: -5px 3px 5px 0px rgba(119, 119, 119, 0.15);
@at-root [data-theme-version="dark"] #{&} {
background-color: #31343b;
color: $white;
}
&:hover {
color: $primary;
}
}
&.show {
right: 0;
z-index: 999;
}
.nav-tabs {
justify-content: space-between;
position: sticky;
top: 0;
background-color: $white;
z-index: 2;
@at-root [data-theme-version="dark"] #{&} {
background-color: $d-bg;
}
.nav-item {
margin-bottom: 0;
flex: 1;
.nav-link {
border: 0;
font-size: 1.125rem;
position: relative;
text-align: center;
background-color: $white;
&::after {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
content: "";
background: transparent;
}
@at-root [data-theme-version="dark"] #{&} {
background-color: $d-bg;
}
&.active {
@at-root [data-theme-version="dark"] #{&} {
border-right: none;
border-left: none;
border-top: none;
}
}
}
}
}
.tab-content {
padding: 1.25rem;
.tab-pane {
.admin-settings {
& > div {
margin-bottom: 10px;
}
p {
margin-bottom: 0.125rem;
}
//All color switcher scss goes here
input[type="radio"] {
display: none;
+ label {
display: inline-block;
width: 25px;
height: 25px;
cursor: pointer;
transition: all .1s ease;
border-radius: 4px;
margin-right: 5px;
margin-bottom: 3px;
}
&:checked {
+ label {
position: relative;
&::after {
height: 33px;
width: 33px;
left: -4px;
top: -4px;
content: "";
position: absolute;
background-color: inherit;
border-radius: 6px;
opacity: 0.4;
}
}
}
}
}
}
}
#nav_header,
#header,
#sidebar,
#primary{
@each $name, $color in $theme_backgrounds {
&_#{$name} {
+ label {
background-color: $color;
}
}
}
&_color_1 {
+ label {
border: 1px solid $muted;
}
}
}
}
@keyframes bounce {
0% {
transform: translateX(-8%);;
-webkit-transform: translateX(-8%);;
}
50% {
transform: translateX(8%);;
-webkit-transform: translateX(8%);;
}
100% {
transform: translateX(-8%);;
-webkit-transform: translateX(-8%);;
}
}
@-webkit-keyframes bounce {
0% {
transform: translateX(-8%);;
-webkit-transform: translateX(-8%);;
}
50% {
transform: translateX(8%);;
-webkit-transform: translateX(8%);;
}
100% {
transform: translateY(-8%);;
-webkit-transform: translateY(-8%);;
}
}

View File

@ -0,0 +1,30 @@
[data-sidebar-position="fixed"][data-layout="vertical"] {
.nav-header {
position: fixed;
// left: auto;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.deznav {
position: fixed;
// z-index: 0;
.deznav-scroll {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
}
.menu-toggle {
.deznav {
position: fixed;
}
}
}
[data-header-position="fixed"][data-sidebar-position="fixed"][data-sidebar-style="overlay"][data-layout="vertical"][data-container="boxed"] {
.deznav {
position: absolute;
}
}

View File

@ -0,0 +1,15 @@
//all sidebar css goes here
@import './sidebar-global';
@import './sidebar-bg';
@import './mega-menu';
@import './sidebar-full';
@import './sidebar-mini-nav';
@import './sidebar-horizontal';
@import './sidebar-compact-nav';
@import './sidebar-icon-hover';
@import './sidebar-modern';
@import './sidebar-overlay';
@import './sidebar-vertical-nav';
@import './sidebar-right';
@import './sidebar-profile';
@import './fixed-sidebar';

View File

@ -0,0 +1,235 @@
//background for nav header
@each $name, $color in $theme_backgrounds {
[data-nav-headerbg="#{$name}"][data-theme-version="dark"],
[data-nav-headerbg="#{$name}"] {
@if $name != "color_1" {
.nav-header {
background-color: $color;
.brand-logo {
color: $white;
&:hover {
color: $white;
}
}
.hamburger .line{
background:#fff;
}
}
&[data-sidebar-style="full"][data-layout="vertical"]{
.menu-toggle .nav-header .nav-control .hamburger .line{
background:#fff ;
}
}
}
}
}
//background for header
@each $name, $color in $theme_backgrounds {
[data-headerbg="#{$name}"][data-theme-version="dark"],
[data-headerbg="#{$name}"] {
@if $name != "color_1" {
.header {
background-color: $color;
color: $white;
}
.header-left {
input {
border-color: lighten($color: $color, $amount: 10%);
background-color: lighten($color: $color, $amount: 10%) !important;
color: $white;
// border-right-color: transparent;
&::placeholder {
color: $white;
}
&:focus {
border-color: darken($color: $color, $amount: 10%);
}
}
.search_icon{
background-color: lighten($color: $color, $amount: 10%) !important;
i{
color: #fff;
}
}
.btn {
background-color: darken($color: $color, $amount: 10%);
border-color: darken($color: $color, $amount: 10%);
&:hover,
&:focus,
&:active {
background-color: darken($color: $color, $amount: 20%);
border-color: darken($color: $color, $amount: 20%);
}
}
}
.header-right {
.dropdown {
&>a {
color: $white;
}
}
.pulse-css{
background-color:$white;
&:after,
&:before{
background-color:inherit;
}
}
.notification_dropdown .nav-link{
background-color: lighten($color: $color, $amount: 10%) !important;
}
.right-sidebar a{
border-color:rgba(255,255,255,0.1);
color:$white;
}
.header-profile > a.nav-link .header-info {
strong{
color:$white;
}
span,
small{
color:rgba(255,255,255,0.7);
}
}
}
.nav-control {
background-color: lighten($color: $color, $amount: 10%);
color: $white;
}
}
}
}
//styles for sidebar
@each $name, $color in $theme_backgrounds {
//:not([data-sidebar-style="modern"])
[data-sibebarbg="#{$name}"][data-theme-version="dark"],
[data-sibebarbg="#{$name}"] {
@if $name != "color_1" {
.deznav {
background-color: $color;
.menu-tabs li a.active{
color: $color;
}
.metismenu {
.nav-label{
color:rgba(255,255,255,0.7);
border-color:rgba(255,255,255,0.2);
}
&>li {
&>a {
color: rgba(255,255,255,0.7); //darken($color: $white, $amount: 0%);
svg{
color:rgba(255,255,255,0.7);
}
g [fill] {
fill: rgba(255,255,255,0.7);
}
}
&:hover,
&:focus,
&.mm-active {
&>a {
color: $white;
g [fill] {
fill:$white;
}
svg{
color:$white;
}
// &::after {
// border-color: transparent transparent $white transparent;
// }
}
}
@at-root [data-layout="horizontal"]#{&} {
// &:not(:last-child) {
border-color: lighten($color: $color, $amount: 10%);
// }
}
}
a {
color: rgba(255,255,255,0.7);
&:hover,
&:focus,
&.mm-active {
color: $white;
}
}
ul {
border-color: rgba(255,255,255,0.2);
&:after{
background-color: rgba(255,255,255,0.2);
}
}
// .has-arrow {
// &:after {
// border-color: transparent transparent darken($color: $white, $amount: 30%) transparent;
// }
// }
}
}
&[data-sidebar-style="mini"][data-layout="vertical"]{
.deznav .metismenu li > ul{
background-color: lighten($color: $color, $amount: 10%);
}
.deznav .metismenu > li.mm-active > a,
.deznav .metismenu > li:hover > a{
background-color: lighten($color: $color, $amount: 10%);
}
}
&[data-sidebar-style="full"][data-layout="vertical"]{
.menu-toggle .deznav .metismenu li > ul,
.menu-toggle .deznav .metismenu > li.mm-active > a,
.menu-toggle .deznav .metismenu > li:hover > a{
background-color: lighten($color: $color, $amount: 10%);
}
}
&[data-sidebar-style="icon-hover"][data-layout="vertical"]{
.deznav .metismenu ul{
border-color: rgba(255,255,255,0.2);
}
}
&[data-layout="horizontal"]{
.deznav .metismenu > li{
border-color: rgba(255,255,255,0.2);
}
}
}
}
}
[data-headerbg="transparent"]{
.header{
box-shadow: none;
background: transparent;
}
}
[data-headerbg="color_1"]{
.nav-header .hamburger.is-active .line,
.nav-header .hamburger .line{
background:$primary !important;
}
}

View File

@ -0,0 +1,92 @@
@media (min-width: 992px) {
[data-container="boxed"] {
#main-wrapper {
max-width: 1199px;
margin: 0 auto;
@at-root [direction="rtl"]#{&} {
text-align: right;
}
}
}
}
@include custommq($min: 1350px) {
[data-layout="vertical"][data-sidebar-style="overlay"][data-container="boxed"][data-header-position="fixed"] {
.header {
width: 1199px;
}
}
}
@include custommq($min: 1200px, $max: 1349px) {
[data-layout="vertical"][data-sidebar-style="overlay"][data-container="boxed"][data-header-position="fixed"] {
.header {
width: 1199px;
}
}
}
[data-header-position="fixed"][data-layout="horizontal"][data-container="boxed"] {
.deznav {
max-width: 1199px;
}
} //ok
[data-layout="horizontal"][data-container="boxed"][data-header-position="fixed"] {
.header {
width: 1199px;
}
}
[data-layout="horizontal"][data-container="boxed"][data-header-position="fixed"][data-sidebar-style="mini"] {
.header {
width: 1199px;
}
}
[data-container="boxed"] {
.metismenu.fixed {
left: auto;
max-width: 1199px;
}
.page-titles {
margin-bottom: 3rem;
padding: 15px 15px;
}
.content-body .container-fluid {
padding: 0.9375rem 0.9375rem 0 0.9375rem;
}
}
[data-container="boxed"][data-layout="vertical"] {
.page-titles {
margin-left: 0;
margin-right: 0;
}
}
[data-layout="vertical"][data-container="boxed"][data-sidebar-position="fixed"][data-header-position="static"][data-sidebar-style="overlay"] {
.nav-header {
position: absolute;
}
.menu-toggle {
.deznav {
position: absolute;
}
}
}
[data-container="boxed"][data-sidebar-position="fixed"][data-layout="horizontal"] {
.deznav.fixed {
left: auto;
max-width: 1199px;
}
}

View File

@ -0,0 +1,605 @@
//Theme color for Primary Variable
@each $name, $color in $theme_backgrounds {
[data-primary="#{$name}"] {
@if $name != "color_1" {
a {
&:hover,
&:focus,
&.active {
color: $color;
}
}
[data-class="bg-primary"]:before{
background: $color;
}
.email-left-box .intro-title{
background: rgba($color, .1);
i{
color: $color;
}
}
.widget-stat .media .media-body h4{
color: $color !important;
}
.email-right-box .right-box-border{
border-right: 2px solid rgba($color, .1);
}
.mail-list .list-group-item.active i{
color: $color;
}
.single-mail.active{
background: $color;
}
.profile-info h4.text-primary {
color: $color!important;
}
.profile-tab .nav-item .nav-link{
&:hover,
&.active{
border-bottom: .20px solid $color;
color: $color;
}
}
.amChartsInputField {
border: 0;
background: $color;
}
.amcharts-period-input,
.amcharts-period-input-selected {
background: $color;
}
.morris-hover {
background: $color;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: $color;
}
.custom-select:focus{
border-color: $color;
color: $color;
}
.daterangepicker {
td.active {
background-color: $color;
&:hover {
background-color: $color;
}
}
button.applyBtn {
background-color: $color;
border-color: $color;
}
}
.wizard {
&>.steps li.current a {
background-color: $color;
}
.skip-email a {
color: $color;
}
&>.actions li:not(.disabled) a {
background-color: $color;
}
}
.step-form-horizontal {
.wizard {
.steps {
li {
&.done {
a {
.number {
background: $color;
}
}
}
&.current a {
.number {
color: $color;
border-color: $color;
}
}
&.disabled a {
.number {
color: $color;
}
}
&:not(:last-child) {
&::after {
background-color: $color;
}
}
}
}
}
}
.is-invalid .input-group-prepend .input-group-text i {
color: lighten($color, 15%);
}
.datamaps-hoverover {
color: $color;
border: 1px solid rgba($color, .3);
}
.jqvmap-zoomin,
.jqvmap-zoomout {
background-color: $color;
}
.table {
.thead-primary th {
background-color: $color;
}
&.primary-table-bg-hover {
thead th {
background-color: darken($color: $color, $amount: 5%);
}
tbody tr {
background-color: $color;
&:hover {
background-color: lighten($color: $color, $amount: 5%);
}
&:not(:last-child) {
td, th {
border-bottom: 1px solid darken($color: $color, $amount: 5%);
}
}
}
}
}
table.dataTable tr.selected{
color: $color;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current{
color: $color !important;
background: rgba($color, .1);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
color: $color !important;
background: rgba($color, .1);
}
.clipboard-btn:hover {
background-color: $color;
}
.cd-h-timeline__dates {
&::before {
background: $color;
}
&::after {
background: $color;
}
}
.cd-h-timeline__line {
background-color: $color;
}
.cd-h-timeline__date:after {
border-color: lighten($color, 0.9);
background-color: $color;
}
.cd-h-timeline__navigation {
border-color: lighten($color, 0.9);
}
.cd-h-timeline__navigation--inactive:hover {
border-color: lighten($color, 0.9);
}
.dd-handle {
background: $color;
}
.dd-handle:hover {
background: $color;
}
.dd3-content:hover {
background: $color;
}
.noUi-connect {
background-color: $color;
&.c-3-color {
background-color: $color;
}
}
.noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle {
background-color: $color;
}
#slider-toggle.off .noUi-handle {
border-color: $color;
}
.pignose-calendar {
border-color: $color;
.pignose-calendar-top-date {
background-color: $color;
}
}
.pignose-calendar.pignose-calendar-blue .pignose-calendar-body .pignose-calendar-row .pignose-calendar-unit.pignose-calendar-unit-active a {
background-color: $color;
}
.bootstrap-tagsinput .tag {
background-color: $color;
}
.toast {
&-success {
background-color: $color;
}
}
.twitter-typeahead .tt-menu .tt-suggestion:hover {
background-color: $color;
}
.accordion {
&-header-bg {
.accordion__header {
&--primary {
background-color: $color;
}
}
}
}
.alert-primary{
background: lighten($color, 25%);
border-color: lighten($color, 25%);
color: $color;
}
.alert-alt.alert-primary{
border-left: 4px solid $color;
}
.alert-alt.alert-primary.solid{
border-left: 4px solid darken($color,25%)!important;
}
.alert.alert-primary.solid{
background: $color;
border-color: $color;
}
.alert.alert-outline-primary{
color: $color;
border-color: $color;
}
.badge-outline-primary{
border: 1px solid $color;
color: $color;
}
.badge-primary {
background-color: $color;
}
.page-titles h4 {
color: $color;
}
.card-action{
&>a{
background: darken($color,57%);
}
//&:hover,&:focus{
// background: darken($color,57%);
//}
.dropdown{
background: darken($color,57%);
color: $color;
&:hover,&:focus{
background: darken($color,57%);
}
}
}
.card-loader i {
background: darken($color,7%);
}
.dropdown-outline{
border: .1rem solid $color;
}
.custom-dropdown .dropdown-menu .dropdown-item:hover{
color: $color;
}
.card-action .custom-dropdown{
background: lighten($color, 30%);
&.show,&:focus,&:hover{
background: $color;
}
}
.label-primary{
background: $color;
}
.pagination {
.page-item {
.page-link {
&:hover{
background: $color;
border-color: $color;
}
}
&.active .page-link {
background-color: $color;
border-color: $color;
}
}
}
.bootstrap-popover-wrapper .bootstrap-popover{
button:hover,
button:focus{
background: $color;
}
}
.progress-bar {
background-color: $color;
}
.progress-bar-primary {
background-color: $color;
}
.ribbon {
&__four {
background-color: $color;
&:after, &:before {
background-color: lighten($color: $color, $amount: 20%);
}
}
&__five {
background-color: $color;
&::before {
border-color: transparent transparent $color transparent;
}
}
&__six {
background-color: $color;
}
}
.multi-steps{
& > li {
color: $color;
&:after {
background-color: $color;
}
&.is-active:before {
border-color: $color;
}
}
}
.timeline-badge.primary {
background-color: $color !important;
}
.tooltip{
&-wrapper{
button:hover{
background: $color;
}
}
}
.chart_widget_tab_one {
.nav-link {
&.active {
background-color: $color;
border: 1px solid $color;
&:hover {
border: 1px solid $color;
}
}
}
}
.social-icon2{
a{
border: .1rem solid $color;
}
i{
color: $color;
}
}
.social-icon3 ul li a:hover i{
color: $color;
}
.bgl-primary{
background: lighten($color, 30%);
border-color: lighten($color, 30%);
color: $color;
}
.tdl-holder input[type=checkbox]:checked + i {
background: $color;
}
.footer .copyright a{
color: $color;
}
.hamburger .line {
background: $color;
}
svg.pulse-svg .first-circle {
fill: $color;
}
.pulse-css {
background: $color;
&:after,
&:before {
background-color: $color;
}
}
.notification_dropdown .dropdown-menu-right .notification_title {
background: $color;
}
.header-right {
.header-profile {
.dropdown-menu {
a {
&:hover,
&:focus,
&.active {
color: $color;
}
}
}
.profile_title {
background: $color;
}
}
}
&[data-sidebar-style="full"][data-layout="vertical"] {
.menu-toggle .nav-header .nav-control .hamburger .line {
background-color: $color!important;
}
}
.deznav .metismenu{
& > li{
& > a svg {
color: $color;
}
&:hover,
&:focus {
&>a {
color: $color;
}
}
&.mm-active {
&>a {
color: $color;
}
}
}
ul a {
&:hover,
&:focus,
&.mm-active {
color: $color;
}
}
}
@media (min-width:767px) {
[data-sidebar-style="modern"] {
.deznav {
.metismenu {
&>li {
&>a {
&:hover,
&:focus,
&:active,
&.mm-active {
&>a {
background-color: lighten($color: $color, $amount: 50%);
}
}
}
}
}
}
}
}
&[data-sidebar-style="overlay"] {
.nav-header .hamburger.is-active .line {
background-color: $color;
}
}
.nav-user {
background: $color;
}
.sidebar-right .sidebar-right .sidebar-right-trigger {
color: $color;
&:hover {
color: $color;
}
}
&[data-theme-version="dark"] {
.pagination .page-item{
.page-link:hover{
background: $color;
border-color: $color;
}
&.active .page-link{
background: $color;
border-color: $color;
}
}
.header-left input:focus {
border-color: $color;
}
.loader {
&__bar {
background: $color;
}
&__ball {
background: $color;
}
}
}
&[data-theme-version="transparent"] {
.header-left input:focus {
border-color: $color;
}
}
.new-arrival-content .price {
color: $color;
}
.chart-link a i.text-primary {
color: $color;
}
#user-activity .nav-tabs .nav-link.active {
background: $color;
border-color: $color;
}
span#counter {
color: $color;
}
.welcome-content:after{
background: $color;
}
.timeline-badge {
background-color: $color;
}
.page-timeline{
.timeline {
&-workplan#{&} {
.timeline-badge:after {
background-color: rgba($color: $color, $alpha: .4);
}
}
}
}
.sk-three-bounce .sk-child {
background-color: $color;
}
.dropdown-item.active,
.dropdown-item:active{
color: #fff;
background-color:$color;
}
.overlay-box:after {
background: $color;
}
.btn-primary{
background-color: $color;
border-color: $color;
}
.bg-primary{
background-color: $color !important;
}
.text-primary{
color:$color !important;
}
.btn-primary:hover {
background-color:darken($color, 15);
border-color: darken($color, 15);
}
.btn-outline-primary {
color:$color;
border-color: $color;
}
.btn-outline-primary:hover {
background-color: $color;
border-color: $color;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle{
background-color:darken($color, 15);
border-color: darken($color, 15);
}
// End Css
}
}
}
@each $color, $value in $theme-colors {
.bg-#{$color}-alt {
background-color: rgba($value, .1);
}
}

View File

@ -0,0 +1,115 @@
[data-container="wide-boxed"] {
@media (min-width: 992px) {
#main-wrapper {
max-width: 1480px;
margin: 0 auto;
}
}
}
[data-container="wide-boxed"][data-sidebar-style="full"] {
@media (min-width: 992px) {
.header {
width: 100%;
}
.menu-toggle {
.header {
width: 100%;
}
}
@at-root [data-header-position="fixed"]#{&} {
.header {
max-width: 1480px;
}
.menu-toggle {
.header {
max-width: 1480px;
}
}
}
}
}
[data-container="wide-boxed"][data-sidebar-style="mini"] {
@media (min-width: 992px) {
.header {
width: 100%;
}
@at-root [data-header-position="fixed"]#{&} {
.header {
max-width: 1480px;
}
}
@at-root [data-header-position="fixed"][data-layout="horizontal"]#{&} {
.header {
max-width: 1480px;
}
}
}
}
[data-container="wide-boxed"][data-sidebar-style="compact"] {
@media (min-width: 992px) {
.header {
width: 100%;
}
@at-root [data-header-position="fixed"]#{&} {
.header {
max-width: 1480px;
}
}
}
}
[data-container="wide-boxed"][data-sidebar-style="overlay"] {
@media (min-width: 992px) {
.header {
width: 100%;
}
@at-root [data-header-position="fixed"]#{&} {
.header {
max-width: 1480px;
}
}
}
}
[data-layout="horizontal"][data-container="wide-boxed"] {
.header {
width: 100%;
}
@at-root [data-sidebar-style="full"][data-header-position="fixed"]#{&} {
.header {
max-width: 1480px;
}
}
@at-root [data-sidebar-style="mini"]#{&} {
.header {
width: 100%;
}
}
}
[data-layout="horizontal"][data-container="wide-boxed"][data-sidebar-position="fixed"] {
.deznav.fixed {
max-width: 1480px;
transition: none;
}
&[direction="rtl"] {
.deznav.fixed {
right: 5%;
}
}
}
[data-layout="horizontal"][data-container="wide-boxed"][data-sidebar-position="fixed"][data-header-position="fixed"] {
.deznav {
max-width: 1480px;
left: 5%;
}
&[direction="rtl"] {
.deznav {
right: 5%;
}
}
}

View File

@ -0,0 +1,4 @@
@import './theme-bg';
@import './theme-boxed';
@import './theme-wide-boxed';
@import './theme-color';

View File

@ -0,0 +1,8 @@
[data-typography="helvetica"] {
font-family: 'HelveticaNeue';
}

View File

@ -0,0 +1,7 @@
[data-typography="opensans"] {
font-family: 'Open Sans', sans-serif;
}

View File

@ -0,0 +1,6 @@
[data-typography="poppins"] {
font-family: 'poppins', sans-serif;
}

View File

@ -0,0 +1,7 @@
[data-typography="roboto"] {
font-family: 'Roboto', sans-serif;
}

View File

@ -0,0 +1,7 @@
@import "./opensans";
@import "./poppins";
@import "./roboto";
@import "./helvetica";

View File

@ -0,0 +1,13 @@
[data-theme-version="dark"] {
.footer {
background-color: transparent;
.copyright {
background-color: transparent;
p {
color: $white;
}
}
}
}

View File

@ -0,0 +1,171 @@
[data-theme-version="dark"] {
.dropdown-menu {
background-color: $d-bg;
box-shadow: 0px 0px 0px 1px rgba(255, 255, 255,0.1);
.dropdown-item {
&.selected,
&.selected.active,
&.active,
&:hover,
&:focus {
background-color: $dark-card;
color: $body-color;
}
}
}
.form-control {
background-color: $d-bg;
border-color: $d-border;
color: $white;
}
.card {
background-color: $dark-card;
box-shadow:none;
}
.btn-outline-dark:hover{
background-color: $d-bg;
border-color: $d-bg;
}
.tdl-holder input[type=text],
.tdl-holder li{
background-color: $dark-card;
border-color:$d-border;
}
.tdl-holder input[type=text]{
&::placeholder {
color: $d-ctl;
}
}
.tdl-holder label:hover {
background-color: $d-border;
color: $white;
}
.text-muted {
color: $d-ctl !important;
}
.modal-content{
background:$dark-card;
}
.modal-footer,
.modal-header{
border-color: $d-border;
}
.close{
font-weight: 400;
color: $white;
text-shadow: none;
&:hover{
color: $white;
}
}
.table strong {
color: #fff;
}
.text-dark {
color: $d-ctl !important;
}
.star-rating .product-review,
.new-arrival-content .item{
color: $white;
}
.custom-dropdown .dropdown-menu{
border-color: $d-border;
}
.widget-stat .media > span{
background: $d-border;
border-color: $d-border;
color:$white;
}
.plus-minus-input .custom-btn{
background: $d-bg;
border-color: $d-border;
}
.dropdown-divider,
.size-filter ul li{
border-color: $d-border;
}
.custom-select{
border-color: $d-border;
color: $d-ctl;
background:$d-bg;
}
.nav-tabs{
border-color: $d-border;
}
.mail-list .list-group-item.active i {
color: $white;
}
hr{
border-color: $d-border;
}
.grid-col{
background:$d-bg;
}
.noUi-target{
border-color:$d-border;
border-radius: 8px;
box-shadow: none;
.noUi-connects{
background:$d-border;
}
}
.noUi-marker-large,
.noUi-marker{
background:$d-border;
}
.input-group-text{
background:$d-border;
color:$body-color;
}
.note-editor.note-frame{
border-color:$d-border;
.btn{
color:$white;
}
.note-editing-area .note-editable{
color:$white;
}
}
.widget-media .timeline .timeline-panel{
border-color:$d-border;
}
.notification_dropdown .dropdown-menu-right .all-notification{
border-color:$d-border;
}
#user-activity .nav-tabs .nav-link{
border-color:$d-border;
}
.list-group-item-action{
color:$body-color;
}
.list-group-item-action:focus,
.list-group-item-action:hover,
.list-group-item-action:focus{
background-color:$d-bg;
border-color:$d-bg;
}
.list-group-item.active{
color:$white;
border-color:$primary;
&:focus,
&:hover,
&:focus{
background-color:$primary;
border-color:$primary;
color:$white;
}
}
.swal2-popup{
background:$dark-card;
}
}

View File

@ -0,0 +1,62 @@
[data-theme-version="dark"] {
.header {
background-color: $dark-card;
}
.header-left {
input {
background: $d-bg !important;
border-color: transparent ;
color: $white !important;
&:focus {
box-shadow: none;
border-color: $primary;
}
&::placeholder {
color: $white;
}
}
.search_icon{
background: $d-bg !important;
i{
color: $white;
}
}
}
.header-right {
.right-sidebar a{
color:$primary;
border-color:$d-border;
}
.header-profile > a.nav-link .header-info strong{
color:$white;
}
.notification_dropdown .nav-link{
background: $d-bg;
}
.dropdown {
.nav-link {
color: $white;
&:hover {
color: $white;
}
}
}
.nav-link {
}
.notification_dropdown {
.dropdown-item {
a {
color: $white;
}
}
}
}
}

View File

@ -0,0 +1,92 @@
[data-theme-version="dark"] {
&[data-sidebar-style="mini"] {
.deznav .metismenu li > ul{
background-color: $dark-card;
}
}
.fixed-content-box{
background-color: $dark-card;
.head-name{
background:$dark-card;
color: $white;
border-color:$d-border;
}
& + .header + .deznav{
background-color: $d-bg;
}
}
.deznav {
background-color: $dark-card;
.metismenu {
&>li {
&>a {
color: darken($color: $white, $amount: 30%);
}
&:hover,
&:focus,
&.mm-active {
&>a {
color: $white;
&::after {
border-color: $white;
}
}
}
&.mm-active {
ul {
ul {
background-color: transparent;
}
}
}
}
//one step dropdown
ul {
&:after{
background-color:$d-border;
}
a {
&:hover,
&:focus,
&.mm-active {
color: $white;
}
&:before{
background-color: $white;
}
}
}
a {
color: darken($color: $white, $amount: 30%);
}
.has-arrow {
&:after {
border-color: $white;
}
}
}
}
}

View File

@ -0,0 +1,18 @@
[data-theme-version="dark"] {
.nav-header,
.nav-control {
background-color:$d-bg;
}
.nav-control {
color: $white;
}
.brand-logo {
color: $white;
&:hover {
color: $white;
}
}
}

View File

@ -0,0 +1,17 @@
[data-theme-version="dark"] {
#preloader {
background: $d-bg;
}
.loader {
&__bar {
background: $primary;
box-shadow: 1px 1px 0 $d-border;
}
&__ball {
background: $primary;
}
}
}

View File

@ -0,0 +1,46 @@
@import "./../../abstracts/variable";
[data-theme-version="dark"] {
background: $d-bg;
color: $d-ctl;
h1,
h2,
h3,
h4,
h5,
h6 {
color: $white !important;
}
a.link {
color: $d-ctd;
}
a.link:focus,
a.link:hover {
color: $info;
}
a {
&:hover {
color: $white;
}
}
//Generating border classess
@each $value in $borders {
@if $value == "" {
.border {
border: 1px solid $d-border !important;
}
} @else {
.border-#{$value} {
border-#{$value}: 1px solid $d-border !important;
}
}
}
}

View File

@ -0,0 +1,16 @@
[data-theme-version="dark"] {
.sidebar-right {
background-color: lighten($d-bg, 3.2%);
.nav-tabs {
background-color: lighten($d-bg, 3.2%);
border-bottom: 1px solid $d-bg;
.nav-link {
&.active {
background-color: $d-bg;
}
}
}
}
}

View File

@ -0,0 +1,8 @@
@import "./dark-reset";
@import "./dark-global";
@import "./dark-header";
@import "./dark-nav-header";
@import "./dark-nav-header";
@import "./dark-left-sidebar";
@import "./dark-right-sidebar";
@import "./dark-footer";

View File

@ -0,0 +1,8 @@
@import "./_transparent-reset";
@import "./_transparent-global";
@import "./_transparent-header";
@import "./_transparent-nav-header";
@import "./_transparent-nav-header";
@import "./_transparent-left-sidebar";
@import "./_transparent-right-sidebar";
@import "./_transparent-footer";

View File

@ -0,0 +1,13 @@
// [data-theme-version="dark"] {
// .footer {
// background-color: lighten($d-bg, 3.2%);
// .copyright {
// background-color: lighten($d-bg, 3.2%);
// p {
// color: $white;
// }
// }
// }
// }

View File

@ -0,0 +1,24 @@
[data-theme-version="transparent"] {
.dropdown-menu {
background-color: $dark-card;
}
.dropdown-item {
&:hover, &:focus {
background-color: $d-bg;
color: $white;
}
}
.form-control {
background-color: $d-bg;
border-color: $d-border;
color: $white;
}
.card {
background-color: rgba(0,0,0,0.15);
}
}

View File

@ -0,0 +1,43 @@
[data-theme-version="transparent"] {
.header {
background-color: rgba(0,0,0,0.15);
}
.header-left {
input {
border-color: $d-border;
color: $white;
&:focus {
box-shadow: none;
border-color: $primary;
}
&::placeholder {
color: $white;
}
}
}
.header-right {
.dropdown {
.nav-link {
&:hover {
color: $white;
}
}
}
.notification_dropdown {
.dropdown-item {
a {
color: $white;
}
}
}
}
}

View File

@ -0,0 +1,70 @@
[data-theme-version="transparent"] {
.deznav {
background-color: rgba(0,0,0,0.15)!important;
.metismenu {
&>li {
&>a {
color: rgba(0,0,0,0.15);
}
&:hover,
&:focus,
&.mm-active {
&>a {
background-color: rgba(0,0,0,0.15)!important;
color: $white;
&::after {
border-color: transparent transparent $white transparent;
}
}
}
&.mm-active {
ul {
ul {
background-color: transparent;
}
}
}
}
//one step dropdown
ul {
background-color: rgba(0,0,0,0.15);
a {
&:hover,
&:focus,
&.mm-active {
color: $white;
}
}
}
a {
color: rgba(0,0,0,0.15);
}
ul {
background-color: rgba(0,0,0,0.15)!important;
}
.has-arrow {
&:after {
border-color: transparent transparent rgba(0,0,0,0.15) transparent;
}
}
}
}
}

View File

@ -0,0 +1,18 @@
[data-theme-version="transparent"] {
.nav-header,
.nav-control {
background-color: rgba(0,0,0,0.15)!important;
}
.nav-control {
color: $white;
}
.brand-logo {
color: $white;
&:hover {
color: $white;
}
}
}

View File

@ -0,0 +1,17 @@
// [data-theme-version="dark"] {
// #preloader {
// background: $d-bg;
// }
// .loader {
// &__bar {
// background: $primary;
// box-shadow: 1px 1px 0 $d-border;
// }
// &__ball {
// background: $primary;
// }
// }
// }

View File

@ -0,0 +1,56 @@
@import "./../../abstracts/variable";
[data-theme-version="transparent"] {
background: url('../images/body/12.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: center;
position: relative;
// background: $d-bg;s
color: $white;
h1,
h2,
h3,
h4,
h5,
h6 {
color: $white !important;
}
a.link {
color: $d-ctd;
}
a.link:focus,
a.link:hover {
color: $info;
}
a {
color: $white;
&:hover {
color: $d-ctl;
}
}
//Generating border classess
@each $value in $borders {
@if $value == "" {
.border {
border: 1px solid $d-border !important;
}
} @else {
.border-#{$value} {
border-#{$value}: 1px solid $d-border !important;
}
}
}
}

View File

@ -0,0 +1,16 @@
// [data-theme-version="dark"] {
// .sidebar-right {
// background-color: lighten($d-bg, 3.2%);
// .nav-tabs {
// background-color: lighten($d-bg, 3.2%);
// border-bottom: 1px solid $d-bg;
// .nav-link {
// &.active {
// background-color: $d-bg;
// }
// }
// }
// }
// }