2018-03-04 02:32:26 +00:00
|
|
|
hr {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-dialog.modal-wide {
|
2018-07-20 01:12:26 +00:00
|
|
|
max-width: 95%;
|
2018-03-04 02:32:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2019-01-03 17:38:17 +00:00
|
|
|
.nav-tabs-scroll {
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
|
|
.nav-tabs {
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub {
|
|
|
|
position: static;
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
sup {
|
|
|
|
position: static;
|
|
|
|
vertical-align: super;
|
|
|
|
}
|
|
|
|
|
2018-07-20 01:12:26 +00:00
|
|
|
$theme-is-dark: false !default;
|
|
|
|
|
|
|
|
// HACK: Bootstrap offers no way to override these by default, and they are SUPER bright.
|
|
|
|
// The level numbers have been changed to make them work for dark themes.
|
|
|
|
@if $theme-is-dark {
|
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
@include table-row-variant($color, theme-color-level($color, 5));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include table-row-variant(active, $table-active-bg);
|