@g1cloud/bluesea 5.0.0-beta.1 → 5.0.0-beta.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/css/bluesea.css +358 -278
- package/css/frame-default.css +16 -12
- package/dist/bluesea.css +304 -228
- package/package.json +1 -1
- package/scss/component.scss +18 -14
package/css/frame-default.css
CHANGED
|
@@ -261,14 +261,26 @@
|
|
|
261
261
|
cursor: pointer;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
.bs-checkbox-group.modified input::before,
|
|
265
|
-
.bs-radio-button-group.modified input::before
|
|
264
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
265
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
266
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
266
267
|
color: var(--purple) !important;
|
|
267
268
|
}
|
|
268
|
-
.bs-checkbox-group.modified input ~ label,
|
|
269
|
-
.bs-radio-button-group.modified input ~ label
|
|
269
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
270
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
271
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
270
272
|
color: var(--purple) !important;
|
|
271
273
|
}
|
|
274
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
275
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
276
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
277
|
+
color: var(--danger) !important;
|
|
278
|
+
}
|
|
279
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
280
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
281
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
282
|
+
color: var(--danger) !important;
|
|
283
|
+
}
|
|
272
284
|
.bs-checkbox-group.disabled input::before,
|
|
273
285
|
.bs-radio-button-group.disabled input::before {
|
|
274
286
|
color: var(--gray-400) !important;
|
|
@@ -277,14 +289,6 @@
|
|
|
277
289
|
.bs-radio-button-group.disabled input ~ label {
|
|
278
290
|
color: var(--gray-400) !important;
|
|
279
291
|
}
|
|
280
|
-
.bs-checkbox-group.error input::before,
|
|
281
|
-
.bs-radio-button-group.error input::before {
|
|
282
|
-
color: var(--danger) !important;
|
|
283
|
-
}
|
|
284
|
-
.bs-checkbox-group.error input ~ label,
|
|
285
|
-
.bs-radio-button-group.error input ~ label {
|
|
286
|
-
color: var(--danger) !important;
|
|
287
|
-
}
|
|
288
292
|
|
|
289
293
|
.bs-select-wrap {
|
|
290
294
|
position: relative;
|