@semcore/data-table 2.2.3 → 2.2.4
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/CHANGELOG.md +6 -0
- package/lib/cjs/Body.js +27 -22
- package/lib/cjs/Body.js.map +1 -1
- package/lib/cjs/DataTable.js +37 -36
- package/lib/cjs/DataTable.js.map +1 -1
- package/lib/cjs/style/data-table.shadow.css +23 -17
- package/lib/es6/Body.js +27 -22
- package/lib/es6/Body.js.map +1 -1
- package/lib/es6/DataTable.js +37 -36
- package/lib/es6/DataTable.js.map +1 -1
- package/lib/es6/style/data-table.shadow.css +23 -17
- package/package.json +1 -1
- package/src/Body.tsx +6 -1
- package/src/style/data-table.shadow.css +23 -17
|
@@ -149,8 +149,9 @@ SRow {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
/* DEFAULT THEME */
|
|
152
|
-
SRow[active] SCell:not([theme]),
|
|
153
|
-
SRow:hover SCell:not([theme])
|
|
152
|
+
SRow[active] > SCell:not([theme]),
|
|
153
|
+
SRow:hover > SCell:not([theme]),
|
|
154
|
+
SRow SCell:hover + SGroupCell SCell:not([theme]) {
|
|
154
155
|
background-color: #f6f7f7;
|
|
155
156
|
}
|
|
156
157
|
|
|
@@ -159,9 +160,10 @@ SRow[theme='muted'] SCell:not([theme]) {
|
|
|
159
160
|
background-color: #f2f3f4;
|
|
160
161
|
}
|
|
161
162
|
|
|
162
|
-
SRow:hover SCell[theme='muted'],
|
|
163
|
-
SRow[theme='muted'][active] SCell:not([theme]),
|
|
164
|
-
SRow[theme='muted']:hover SCell:not([theme])
|
|
163
|
+
SRow:hover > SCell[theme='muted'],
|
|
164
|
+
SRow[theme='muted'][active] > SCell:not([theme]),
|
|
165
|
+
SRow[theme='muted']:hover > SCell:not([theme]),
|
|
166
|
+
SRow[theme='muted'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
165
167
|
background-color: #f6f7f7;
|
|
166
168
|
}
|
|
167
169
|
|
|
@@ -170,9 +172,10 @@ SRow[theme='info'] SCell:not([theme]) {
|
|
|
170
172
|
background-color: color-mod(var(--light-blue) blend(#fff 80%));
|
|
171
173
|
}
|
|
172
174
|
|
|
173
|
-
SRow:hover SCell[theme='info'],
|
|
174
|
-
SRow[theme='info'][active] SCell:not([theme]),
|
|
175
|
-
SRow[theme='info']:hover SCell:not([theme])
|
|
175
|
+
SRow:hover > SCell[theme='info'],
|
|
176
|
+
SRow[theme='info'][active] > SCell:not([theme]),
|
|
177
|
+
SRow[theme='info']:hover > SCell:not([theme]),
|
|
178
|
+
SRow[theme='info'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
176
179
|
background-color: color-mod(var(--light-blue) blend(#fff 75%));
|
|
177
180
|
}
|
|
178
181
|
|
|
@@ -181,9 +184,10 @@ SRow[theme='success'] SCell:not([theme]) {
|
|
|
181
184
|
background-color: color-mod(var(--green) blend(#fff 85%));
|
|
182
185
|
}
|
|
183
186
|
|
|
184
|
-
SRow:hover SCell[theme='success'],
|
|
185
|
-
SRow[theme='success'][active] SCell:not([theme]),
|
|
186
|
-
SRow[theme='success']:hover SCell:not([theme])
|
|
187
|
+
SRow:hover > SCell[theme='success'],
|
|
188
|
+
SRow[theme='success'][active] > SCell:not([theme]),
|
|
189
|
+
SRow[theme='success']:hover > SCell:not([theme]),
|
|
190
|
+
SRow[theme='success'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
187
191
|
background-color: color-mod(var(--green) blend(#fff 80%));
|
|
188
192
|
}
|
|
189
193
|
|
|
@@ -192,9 +196,10 @@ SRow[theme='warning'] SCell:not([theme]) {
|
|
|
192
196
|
background-color: color-mod(var(--light-orange) blend(#fff 85%));
|
|
193
197
|
}
|
|
194
198
|
|
|
195
|
-
SRow:hover SCell[theme='warning'],
|
|
196
|
-
SRow[theme='warning'][active] SCell:not([theme]),
|
|
197
|
-
SRow[theme='warning']:hover SCell:not([theme])
|
|
199
|
+
SRow:hover > SCell[theme='warning'],
|
|
200
|
+
SRow[theme='warning'][active] > SCell:not([theme]),
|
|
201
|
+
SRow[theme='warning']:hover > SCell:not([theme]),
|
|
202
|
+
SRow[theme='warning'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
198
203
|
background-color: color-mod(var(--light-orange) blend(#fff 80%));
|
|
199
204
|
}
|
|
200
205
|
|
|
@@ -203,9 +208,10 @@ SRow[theme='danger'] SCell:not([theme]) {
|
|
|
203
208
|
background-color: color-mod(var(--red) blend(#fff 90%));
|
|
204
209
|
}
|
|
205
210
|
|
|
206
|
-
SRow:hover SCell[theme='danger'],
|
|
207
|
-
SRow[theme='danger'][active] SCell:not([theme]),
|
|
208
|
-
SRow[theme='danger']:hover SCell:not([theme])
|
|
211
|
+
SRow:hover > SCell[theme='danger'],
|
|
212
|
+
SRow[theme='danger'][active] > SCell:not([theme]),
|
|
213
|
+
SRow[theme='danger']:hover > SCell:not([theme]),
|
|
214
|
+
SRow[theme='danger'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
209
215
|
background-color: color-mod(var(--red) blend(#fff 85%));
|
|
210
216
|
}
|
|
211
217
|
|