Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/_tables.scss')
-rw-r--r--src/_tables.scss18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/_tables.scss b/src/_tables.scss
index 63a163a..074301f 100644
--- a/src/_tables.scss
+++ b/src/_tables.scss
@@ -13,27 +13,35 @@
}
}
- &.table-hover {
+ &,
+ &.table-striped {
tbody {
tr {
- &:hover {
+ &.active {
background: $bg-color-dark;
}
}
}
}
- &,
- &.table-striped {
+ &.table-hover {
tbody {
tr {
- &.active {
+ &:hover {
background: $bg-color-dark;
}
}
}
}
+ // Tables with horizontal scrollbar
+ &.table-scroll {
+ display: block;
+ overflow-x: auto;
+ padding-bottom: .75rem;
+ white-space: nowrap;
+ }
+
td,
th {
border-bottom: $border-width solid $border-color;