Skip to content
Snippets Groups Projects
Verified Commit 0686ab05 authored by Aleksandr Gumroian's avatar Aleksandr Gumroian
Browse files

Fix shadows in Dark Mode

parent 0a41f46c
Branches
Tags v4.1.0
1 merge request!6Fix dark-mode toggle on page load
......@@ -69,3 +69,15 @@
~ .custom-control-label::after {
background-color: rgb(24, 26, 27);
}
[data-theme="dark"] .card:hover {
box-shadow: 0 1rem 1.5rem rgba(255, 255, 255, 0.175) !important;
}
[data-theme="dark"] .shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(255, 255, 255, 0.075) !important;
}
[data-theme="dark"] .shadow {
box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.15) !important;
}
[data-theme=dark]{background-color:#111!important;color:#d1cdc7}[data-theme=dark] .bg-light{background-color:#333!important}[data-theme=dark] .bg-white{background-color:#000!important}[data-theme=dark] .bg-black{background-color:#eee!important}[data-theme=dark] .card .card-img-top,[data-theme=dark] a img{filter:invert(.6)}[data-theme=dark] .progress{background-color:#232627}[data-theme=dark] .card{background-color:#181a1b;border-color:rgba(140,130,115,.13)}[data-theme=dark] .border-bottom{border-bottom-color:#fff!important}[data-theme=dark] .badge-primary,[data-theme=dark] .progress-bar{color:#e8e6e3;background-color:#0062cc}[data-theme=dark] .text-dark{color:#c3beb6!important}[data-theme=dark] .custom-control-label::before{background-color:#181a1b;border-color:#454b4e}[data-theme=dark] .custom-control-input:checked~.custom-control-label::before{color:#e8e6e3;border-color:#0056b3;background-color:#0062cc}[data-theme=dark] .custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#181a1b}
\ No newline at end of file
[data-theme=dark]{background-color:#111!important;color:#d1cdc7}[data-theme=dark] .bg-light{background-color:#333!important}[data-theme=dark] .bg-white{background-color:#000!important}[data-theme=dark] .bg-black{background-color:#eee!important}[data-theme=dark] .card .card-img-top,[data-theme=dark] a img{filter:invert(.6)}[data-theme=dark] .progress{background-color:#232627}[data-theme=dark] .card{background-color:#181a1b;border-color:rgba(140,130,115,.13)}[data-theme=dark] .border-bottom{border-bottom-color:#fff!important}[data-theme=dark] .badge-primary,[data-theme=dark] .progress-bar{color:#e8e6e3;background-color:#0062cc}[data-theme=dark] .text-dark{color:#c3beb6!important}[data-theme=dark] .custom-control-label::before{background-color:#181a1b;border-color:#454b4e}[data-theme=dark] .custom-control-input:checked~.custom-control-label::before{color:#e8e6e3;border-color:#0056b3;background-color:#0062cc}[data-theme=dark] .custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#181a1b}[data-theme=dark] .card:hover{box-shadow:0 1rem 1.5rem rgba(255,255,255,.175)!important}[data-theme=dark] .shadow-sm{box-shadow:0 .125rem .25rem rgba(255,255,255,.075)!important}[data-theme=dark] .shadow{box-shadow:0 .5rem 1rem rgba(255,255,255,.15)!important}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment