Commit realizando cambios en los roles de los usuarios

This commit is contained in:
Jaime Jimenez
2023-04-24 13:00:46 +02:00
parent 2d67588770
commit 8c4d77a598
6587 changed files with 365497 additions and 0 deletions

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,24 @@
[data-theme-version="dark"] {
.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: $dark-card;
}
}

View File

@ -0,0 +1,41 @@
[data-theme-version="dark"] {
.header {
background-color: $primary;
}
.header-left {
input {
border-color: transparent;
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,67 @@
[data-theme-version="dark"] {
.quixnav {
background-color: $d-bg;
.metismenu {
&>li {
&>a {
color: darken($color: $white, $amount: 30%);
}
&:hover,
&:focus,
&.mm-active {
&>a {
background-color: transparent;
color: $primary;
&::after {
border-color: transparent transparent $white transparent;
}
}
}
&.mm-active {
ul {
ul {
background-color: transparent;
}
}
}
}
//one step dropdown
ul {
background-color: $d-bg;
a {
&:hover,
&:focus,
&.mm-active {
color: $white;
}
}
}
a {
color: darken($color: $white, $amount: 30%);
}
.has-arrow {
&:after {
border-color: transparent transparent darken($color: $white, $amount: 30%) transparent;
}
}
}
}
}

View File

@ -0,0 +1,18 @@
[data-theme-version="dark"] {
.nav-header,
.nav-control {
background-color:$primary;
}
.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,48 @@
@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 {
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;
}
}
}
}
}

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";