|
@@ -88,7 +88,8 @@
|
|
|
}
|
|
|
|
|
|
tr {
|
|
|
- border-bottom: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $table-border-color;
|
|
|
+ border-bottom: var(--#{$prefix}border-width)
|
|
|
+ var(--#{$prefix}border-style) $table-border-color;
|
|
|
}
|
|
|
|
|
|
.btn {
|
|
@@ -99,6 +100,9 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+Table sort
|
|
|
+ */
|
|
|
.table-sort {
|
|
|
font: inherit;
|
|
|
color: inherit;
|
|
@@ -120,26 +124,23 @@
|
|
|
color: var(--#{$prefix}body-color);
|
|
|
}
|
|
|
|
|
|
- &:after,
|
|
|
- &.asc:after,
|
|
|
- &.desc:after {
|
|
|
+ &:after {
|
|
|
content: "";
|
|
|
display: inline-flex;
|
|
|
width: 1rem;
|
|
|
height: 1rem;
|
|
|
vertical-align: bottom;
|
|
|
- background: $table-sort-bg-image no-repeat center;
|
|
|
- opacity: .2;
|
|
|
+ mask-image: $table-sort-bg-image;
|
|
|
+ background: currentColor;
|
|
|
+ margin-left: .25rem;
|
|
|
}
|
|
|
|
|
|
&.asc:after {
|
|
|
- background: $table-sort-desc-bg-image no-repeat center;
|
|
|
- opacity: 1;
|
|
|
+ mask-image: $table-sort-desc-bg-image;
|
|
|
}
|
|
|
|
|
|
&.desc:after {
|
|
|
- background: $table-sort-asc-bg-image no-repeat center;
|
|
|
- opacity: 1;
|
|
|
+ mask-image: $table-sort-asc-bg-image;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -147,4 +148,4 @@
|
|
|
thead th {
|
|
|
background: transparent;
|
|
|
}
|
|
|
-}
|
|
|
+}
|