47 lines
1.1 KiB
CSS
47 lines
1.1 KiB
CSS
|
/* Custom nonshy color overrides for Bulma's dark theme */
|
||
|
|
||
|
/* nonshy custom overrides */
|
||
|
.has-background-primary-light {
|
||
|
background-color: rgba(28, 166, 76, 0.25) !important;
|
||
|
}
|
||
|
|
||
|
.has-background-success-light, .has-background-success {
|
||
|
background-color: rgba(19, 71, 37, 0.685) !important
|
||
|
}
|
||
|
|
||
|
.has-background-warning-light, .has-background-warning, .nonshy-navbar-notification-tag.is-warning {
|
||
|
background-color: rgb(100, 90, 41) !important;
|
||
|
}
|
||
|
|
||
|
.has-background-link-light {
|
||
|
background-color: rgba(15, 129, 204, 0.25) !important;
|
||
|
}
|
||
|
|
||
|
.has-text-dark {
|
||
|
/* note: this css file otherwise didn't override this, dark's always dark, brighten it! */
|
||
|
color: #b5b5b5 !important;
|
||
|
}
|
||
|
|
||
|
a.has-text-dark:focus,
|
||
|
a.has-text-dark:hover {
|
||
|
color: #d5d5d5 !important;
|
||
|
}
|
||
|
|
||
|
.modal-background {
|
||
|
background-color: rgba(0, 0, 0, 0.86) !important;
|
||
|
}
|
||
|
|
||
|
/* Tag color overrides */
|
||
|
.tag.is-grey {
|
||
|
background-color: #3f3f3f;
|
||
|
color: #eee;
|
||
|
}
|
||
|
.tag.is-danger.is-light {
|
||
|
background-color: #500;
|
||
|
color: #FCC;
|
||
|
}
|
||
|
.tag.is-warning {
|
||
|
background-color: #550;
|
||
|
color: #FFC;
|
||
|
}
|