quasar-ui-sellmate-ui-kit 3.0.5 → 3.0.6
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/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/STable.vue +15 -0
package/package.json
CHANGED
|
@@ -264,18 +264,33 @@
|
|
|
264
264
|
min-height: 0;
|
|
265
265
|
tr {
|
|
266
266
|
height: 36px;
|
|
267
|
+
color: $Grey_Darken-5;
|
|
267
268
|
th {
|
|
268
269
|
padding: $table-th-padding;
|
|
269
270
|
font-size: $default-font;
|
|
270
271
|
font-weight: $font-weight-md;
|
|
271
272
|
word-break: keep-all;
|
|
272
273
|
white-space: nowrap;
|
|
274
|
+
&.sortable {
|
|
275
|
+
> .q-table__sort-icon {
|
|
276
|
+
display: none;
|
|
277
|
+
color: $Blue_B_Lighten-1;
|
|
278
|
+
font-size: 16px;
|
|
279
|
+
}
|
|
280
|
+
&:hover {
|
|
281
|
+
> .q-table__sort-icon {
|
|
282
|
+
display: inline-block;
|
|
283
|
+
opacity: 1;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
273
287
|
}
|
|
274
288
|
}
|
|
275
289
|
}
|
|
276
290
|
tbody {
|
|
277
291
|
tr {
|
|
278
292
|
min-height: 0px;
|
|
293
|
+
color: $Grey_Darken-5;
|
|
279
294
|
td {
|
|
280
295
|
padding: $table-th-padding;
|
|
281
296
|
font-size: $default-font;
|