@ansiversa/components 0.0.91 → 0.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/styles/global.css +14 -9
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -1139,22 +1139,27 @@
|
|
|
1139
1139
|
}
|
|
1140
1140
|
|
|
1141
1141
|
.av-table__sort::after {
|
|
1142
|
-
content: "";
|
|
1142
|
+
content: "▲\A▼";
|
|
1143
1143
|
display: inline-block;
|
|
1144
|
-
|
|
1145
|
-
height: 0;
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
border-top: 6px solid var(--ans-muted);
|
|
1149
|
-
transform: translateY(1px);
|
|
1144
|
+
white-space: pre;
|
|
1145
|
+
line-height: 0.7;
|
|
1146
|
+
font-size: 0.6rem;
|
|
1147
|
+
color: var(--ans-muted);
|
|
1150
1148
|
}
|
|
1151
1149
|
|
|
1152
1150
|
.av-table__sort--active::after {
|
|
1153
|
-
|
|
1151
|
+
color: transparent;
|
|
1152
|
+
background: linear-gradient(to bottom, var(--ans-text) 0 50%, var(--ans-muted) 50% 100%);
|
|
1153
|
+
-webkit-background-clip: text;
|
|
1154
|
+
background-clip: text;
|
|
1154
1155
|
}
|
|
1155
1156
|
|
|
1156
1157
|
.av-table__sort--asc::after {
|
|
1157
|
-
|
|
1158
|
+
background: linear-gradient(to bottom, var(--ans-text) 0 50%, var(--ans-muted) 50% 100%);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.av-table__sort--desc::after {
|
|
1162
|
+
background: linear-gradient(to bottom, var(--ans-muted) 0 50%, var(--ans-text) 50% 100%);
|
|
1158
1163
|
}
|
|
1159
1164
|
|
|
1160
1165
|
.av-table--sticky thead th {
|