@kupola/kupola 1.4.6 → 1.4.7
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/css/components.css +1 -0
- package/css/table.css +1 -0
- package/dist/css/components.css +1 -0
- package/dist/css/table.css +1 -0
- package/dist/kupola.css +9139 -0
- package/dist/kupola.min.css +1 -0
- package/package.json +1 -1
package/css/components.css
CHANGED
|
@@ -1020,6 +1020,7 @@
|
|
|
1020
1020
|
.ds-table__pagination { display: flex; align-items: center; gap: var(--spacer-8); }
|
|
1021
1021
|
|
|
1022
1022
|
/* Table variants (IMP-001) */
|
|
1023
|
+
.ds-table tbody tr { background: var(--bg-base-default); }
|
|
1023
1024
|
.ds-table--striped tbody tr:nth-child(even) { background: var(--bg-base-secondary); }
|
|
1024
1025
|
.ds-table--hover tbody tr:hover { background: var(--bg-overlay-l1); cursor: default; }
|
|
1025
1026
|
.ds-table--compact th,
|
package/css/table.css
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
.kupola-table { width: 100%; border-collapse: collapse; font-size: 14px; }
|
|
8
8
|
.kupola-table th, .kupola-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-neutral-l1); }
|
|
9
9
|
.kupola-table th { background: var(--bg-base-secondary); font-weight: 600; color: var(--text-default); white-space: nowrap; }
|
|
10
|
+
.kupola-table tbody tr { background: var(--bg-base-default); }
|
|
10
11
|
.kupola-table-striped tbody tr:nth-child(even) { background: var(--bg-base-secondary); }
|
|
11
12
|
.kupola-table-hover tbody tr:hover { background: var(--status-primary-surface-l2); }
|
|
12
13
|
.kupola-table-bordered { border: 1px solid var(--border-neutral-l1); }
|
package/dist/css/components.css
CHANGED
|
@@ -1020,6 +1020,7 @@
|
|
|
1020
1020
|
.ds-table__pagination { display: flex; align-items: center; gap: var(--spacer-8); }
|
|
1021
1021
|
|
|
1022
1022
|
/* Table variants (IMP-001) */
|
|
1023
|
+
.ds-table tbody tr { background: var(--bg-base-default); }
|
|
1023
1024
|
.ds-table--striped tbody tr:nth-child(even) { background: var(--bg-base-secondary); }
|
|
1024
1025
|
.ds-table--hover tbody tr:hover { background: var(--bg-overlay-l1); cursor: default; }
|
|
1025
1026
|
.ds-table--compact th,
|
package/dist/css/table.css
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
.kupola-table { width: 100%; border-collapse: collapse; font-size: 14px; }
|
|
8
8
|
.kupola-table th, .kupola-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-neutral-l1); }
|
|
9
9
|
.kupola-table th { background: var(--bg-base-secondary); font-weight: 600; color: var(--text-default); white-space: nowrap; }
|
|
10
|
+
.kupola-table tbody tr { background: var(--bg-base-default); }
|
|
10
11
|
.kupola-table-striped tbody tr:nth-child(even) { background: var(--bg-base-secondary); }
|
|
11
12
|
.kupola-table-hover tbody tr:hover { background: var(--status-primary-surface-l2); }
|
|
12
13
|
.kupola-table-bordered { border: 1px solid var(--border-neutral-l1); }
|