@ansiversa/components 0.0.92 → 0.0.94
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 +12 -11
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -1139,24 +1139,25 @@
|
|
|
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);
|
|
1150
|
-
opacity: 0;
|
|
1144
|
+
white-space: pre;
|
|
1145
|
+
line-height: 0.7;
|
|
1146
|
+
font-size: 0.6rem;
|
|
1147
|
+
color: var(--ans-muted);
|
|
1151
1148
|
}
|
|
1152
1149
|
|
|
1153
1150
|
.av-table__sort--active::after {
|
|
1154
|
-
|
|
1155
|
-
|
|
1151
|
+
color: var(--ans-text);
|
|
1152
|
+
content: "▲";
|
|
1156
1153
|
}
|
|
1157
1154
|
|
|
1158
1155
|
.av-table__sort--asc::after {
|
|
1159
|
-
|
|
1156
|
+
content: "▲";
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.av-table__sort--desc::after {
|
|
1160
|
+
content: "▼";
|
|
1160
1161
|
}
|
|
1161
1162
|
|
|
1162
1163
|
.av-table--sticky thead th {
|