1
0
Fork 0

Fix calendar in dark mode

This commit is contained in:
Chocobozzz 2019-01-17 11:51:08 +01:00
parent f2fab901df
commit aa87909287
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 16 additions and 6 deletions

View File

@ -73,7 +73,7 @@
justify-content: center;
background-color: var(--mainColor);
color: var(--mainBackgroundColor);
color: var(#fff);
font-size: 10px;
font-weight: $font-semibold;

View File

@ -290,12 +290,12 @@ ngb-tabset.bootstrap {
@include disable-default-a-behaviour;
color: var(--mainForegroundColor) !important;
&.active {
color: #000 !important;
}
}
}
.nav-pills .nav-link.active {
color: #000 !important;
}
}
.nav-tabs .nav-link.active {

View File

@ -261,6 +261,10 @@
color: transparent;
text-shadow: 0 0 0 #000;
}
option {
color: #000;
}
}
}

View File

@ -197,7 +197,7 @@ p-table {
height: auto !important;
a {
color: #000 !important;
color: var(--mainForegroundColor) !important;
font-weight: $font-semibold !important;
margin: 0 5px !important;
outline: 0 !important;
@ -234,6 +234,7 @@ p-calendar .ui-datepicker {
@extend .glyphicon-chevron-right;
@include glyphicon-light;
color: #000 !important;
text-align: right;
.pi.pi-chevron-right {
@ -245,6 +246,7 @@ p-calendar .ui-datepicker {
@extend .glyphicon-chevron-left;
@include glyphicon-light;
color: #000 !important;
text-align: left;
.pi.pi-chevron-left {
@ -258,11 +260,15 @@ p-calendar .ui-datepicker {
.pi.pi-chevron-up {
@extend .glyphicon-chevron-up;
@include glyphicon-light;
color: #000 !important;
}
.pi.pi-chevron-down {
@extend .glyphicon-chevron-down;
@include glyphicon-light;
color: #000 !important;
}
}
}