2018-10-22 02:41:35 -04:00
|
|
|
@import "../themes/themes";
|
|
|
|
|
2018-10-23 00:10:28 -04:00
|
|
|
@include themifyRoot() {
|
2019-04-14 18:23:57 -04:00
|
|
|
.main-app {
|
|
|
|
a {
|
|
|
|
color: themed(anchorColor);
|
2021-12-01 16:35:16 -05:00
|
|
|
text-decoration: none;
|
2019-04-14 18:23:57 -04:00
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2019-04-14 18:23:57 -04:00
|
|
|
table, td, th {
|
|
|
|
border-color: themed(tableBorderColor);
|
|
|
|
color: themed(defaultFgColor);
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2019-04-14 18:23:57 -04:00
|
|
|
code {
|
|
|
|
background-color: themed(codeBgColor);
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2019-04-14 18:23:57 -04:00
|
|
|
*.text-muted {
|
|
|
|
color: themed(altMutedColor) !important;
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2019-04-14 18:23:57 -04:00
|
|
|
.form-control {
|
|
|
|
color: themed(formControlFgColor);
|
|
|
|
background-color: themed(formControlBgColor);
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2019-04-14 18:23:57 -04:00
|
|
|
.form-control::placeholder {
|
|
|
|
color: themed(formControlPlaceholderColor);
|
|
|
|
}
|
2021-09-06 18:19:02 -04:00
|
|
|
|
|
|
|
.toast:not(.show) {
|
|
|
|
display: flex;
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
2021-12-01 16:35:16 -05:00
|
|
|
}
|