@yuneta/gobj-ui 7.13.0 → 7.13.1
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/tabulator.css +5 -3
package/package.json
CHANGED
package/src/tabulator.css
CHANGED
|
@@ -247,7 +247,11 @@
|
|
|
247
247
|
* ==================================================================== */
|
|
248
248
|
.tabulator .tabulator-header .tabulator-header-filter input,
|
|
249
249
|
.tabulator .tabulator-header .tabulator-header-filter select {
|
|
250
|
-
|
|
250
|
+
/* A neutral translucent grey, NOT `--bulma-border`: that token does not
|
|
251
|
+
* flip with the theme here -- it stays #dbdbdb, which is a hairline on
|
|
252
|
+
* white and a bright line on near-black. 35% mid-grey reads as the same
|
|
253
|
+
* quiet hairline over both, and needs no per-theme rule. */
|
|
254
|
+
border: 1px solid rgba(128, 128, 128, 0.35);
|
|
251
255
|
border-radius: 3px;
|
|
252
256
|
background-color: transparent;
|
|
253
257
|
}
|
|
@@ -260,7 +264,6 @@
|
|
|
260
264
|
|
|
261
265
|
[data-theme=dark] .tabulator .tabulator-header .tabulator-header-filter input,
|
|
262
266
|
[data-theme=dark] .tabulator .tabulator-header .tabulator-header-filter select {
|
|
263
|
-
border-color: var(--bulma-border, #3a3f4a);
|
|
264
267
|
color: var(--bulma-text-strong, #f5f6f7);
|
|
265
268
|
caret-color: var(--bulma-text-strong, #f5f6f7);
|
|
266
269
|
}
|
|
@@ -362,7 +365,6 @@
|
|
|
362
365
|
/* same furniture-not-editor rule as [data-theme=dark] above */
|
|
363
366
|
[data-theme=system] .tabulator .tabulator-header .tabulator-header-filter input,
|
|
364
367
|
[data-theme=system] .tabulator .tabulator-header .tabulator-header-filter select {
|
|
365
|
-
border-color: var(--bulma-border, #3a3f4a);
|
|
366
368
|
color: var(--bulma-text-strong, #f5f6f7);
|
|
367
369
|
caret-color: var(--bulma-text-strong, #f5f6f7);
|
|
368
370
|
}
|