matrix-dimension/web/style/components/bootstrap_override.scss

37 lines
659 B
SCSS
Raw Normal View History

@import "../themes/themes";
@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
}
2019-04-14 18:23:57 -04:00
table, td, th {
border-color: themed(tableBorderColor);
color: themed(defaultFgColor);
}
2019-04-14 18:23:57 -04:00
code {
background-color: themed(codeBgColor);
}
2019-04-14 18:23:57 -04:00
*.text-muted {
color: themed(altMutedColor) !important;
}
2019-04-14 18:23:57 -04:00
.form-control {
color: themed(formControlFgColor);
background-color: themed(formControlBgColor);
}
2019-04-14 18:23:57 -04:00
.form-control::placeholder {
color: themed(formControlPlaceholderColor);
}
.toast:not(.show) {
display: flex;
}
}
2021-12-01 16:35:16 -05:00
}