@progressio_resources/gravity-design-system 2.5.13 → 2.5.14
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/esm2022/lib/components/gravity-notification-instant/gravity-notification-instant-container.component.mjs +2 -2
- package/esm2022/lib/components/gravity-switch/gravity-switch.component.mjs +3 -3
- package/esm2022/lib/components/gravity-table/gravity-table.component.mjs +2 -2
- package/fesm2022/progressio_resources-gravity-design-system.mjs +6 -6
- package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/styles/components/_tables.scss +5 -5
package/package.json
CHANGED
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
|
|
26
26
|
tbody {
|
|
27
27
|
tr {
|
|
28
|
-
background-color: var(--surface-
|
|
29
|
-
border-bottom: 1px solid var(--surface-
|
|
28
|
+
background-color: var(--surface-primary);
|
|
29
|
+
border-bottom: 1px solid var(--surface-secondary);
|
|
30
30
|
color: var(--text-primary);
|
|
31
31
|
|
|
32
32
|
&:has(td.actions-column) {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
&:hover {
|
|
53
|
-
background-color: var(--surface-
|
|
53
|
+
background-color: var(--surface-secondary);
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.mobile-menu-trigger {
|
|
@@ -140,14 +140,14 @@
|
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
tr {
|
|
143
|
-
background-color: var(--surface-
|
|
143
|
+
background-color: var(--surface-primary);
|
|
144
144
|
border-radius: $border-radius-sm;
|
|
145
145
|
color: var(--text-primary);
|
|
146
146
|
margin-bottom: 1rem;
|
|
147
147
|
padding: 0.75rem 1rem; //12px 16px
|
|
148
148
|
|
|
149
149
|
&:has(.actions-column) td:not(:nth-last-of-type(2)):not(.mobile-menu-trigger), &:not(:has(.actions-column)) td:not(:last-of-type):not(.mobile-menu-trigger) {
|
|
150
|
-
border-bottom: 1px solid var(--surface-
|
|
150
|
+
border-bottom: 1px solid var(--surface-secondary);
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
|