@lucca-front/scss 18.2.0-rc.1 → 18.2.0-rc.2
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/lucca-front.min.css +1 -1
- package/package.json +2 -2
- package/src/components/checkboxField/component.scss +3 -1
- package/src/components/file/component.scss +1 -1
- package/src/components/indexTable/component.scss +14 -4
- package/src/components/indexTable/mods.scss +303 -295
- package/src/components/tableSortable/component.scss +1 -0
- package/src/components/tableSortable/index.scss +1 -4
- package/src/components/tableSortable/mods.scss +8 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucca-front/scss",
|
|
3
|
-
"version": "18.2.0-rc.
|
|
3
|
+
"version": "18.2.0-rc.2",
|
|
4
4
|
"description": "A Sass framework for Lucca products.",
|
|
5
5
|
"main": "src/main.scss",
|
|
6
6
|
"scripts": {},
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"normalize.css": "^8.0.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@lucca-front/icons": "v18.2.0-rc.
|
|
26
|
+
"@lucca-front/icons": "v18.2.0-rc.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -86,9 +86,19 @@
|
|
|
86
86
|
&:last-child {
|
|
87
87
|
--components-indexTable-cell-padding-right: var(--components-indexTable-cell-padding);
|
|
88
88
|
}
|
|
89
|
+
}
|
|
89
90
|
|
|
90
|
-
|
|
91
|
-
|
|
91
|
+
.indexTable-body-row {
|
|
92
|
+
&:has(.indexTable-body-row-cell-link) {
|
|
93
|
+
.indexTable-body-row-cell {
|
|
94
|
+
&:not(:has(button, a, input, textarea, select, details, [tabindex='0']), .mod-allowTextSelection) {
|
|
95
|
+
pointer-events: none;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
// .indexTable-body-row-cell-link is deprecated
|
|
100
|
+
&:not(:has(.indexTable-body-row-cell-link)) {
|
|
101
|
+
cursor: pointer;
|
|
92
102
|
}
|
|
93
103
|
}
|
|
94
104
|
|
|
@@ -181,8 +191,8 @@
|
|
|
181
191
|
|
|
182
192
|
.indexTable-body-row-cell-checkbox,
|
|
183
193
|
.indexTable-head-row-cell-checkbox {
|
|
184
|
-
|
|
185
|
-
margin:
|
|
194
|
+
margin: var(--pr-t-spacings-50);
|
|
195
|
+
margin-right: var(--pr-t-spacings-150);
|
|
186
196
|
}
|
|
187
197
|
|
|
188
198
|
// .indexTable-body-row-cell-action is deprecated
|