@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/bluesea.css
CHANGED
|
@@ -16377,14 +16377,26 @@ textarea {
|
|
|
16377
16377
|
cursor: pointer;
|
|
16378
16378
|
}
|
|
16379
16379
|
|
|
16380
|
-
.bs-checkbox-group.modified input::before,
|
|
16381
|
-
.bs-radio-button-group.modified input::before
|
|
16380
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
16381
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
16382
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
16382
16383
|
color: var(--purple) !important;
|
|
16383
16384
|
}
|
|
16384
|
-
.bs-checkbox-group.modified input ~ label,
|
|
16385
|
-
.bs-radio-button-group.modified input ~ label
|
|
16385
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
16386
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
16387
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
16386
16388
|
color: var(--purple) !important;
|
|
16387
16389
|
}
|
|
16390
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
16391
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
16392
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
16393
|
+
color: var(--danger) !important;
|
|
16394
|
+
}
|
|
16395
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
16396
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
16397
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
16398
|
+
color: var(--danger) !important;
|
|
16399
|
+
}
|
|
16388
16400
|
.bs-checkbox-group.disabled input::before,
|
|
16389
16401
|
.bs-radio-button-group.disabled input::before {
|
|
16390
16402
|
color: var(--gray-400) !important;
|
|
@@ -16393,14 +16405,6 @@ textarea {
|
|
|
16393
16405
|
.bs-radio-button-group.disabled input ~ label {
|
|
16394
16406
|
color: var(--gray-400) !important;
|
|
16395
16407
|
}
|
|
16396
|
-
.bs-checkbox-group.error input::before,
|
|
16397
|
-
.bs-radio-button-group.error input::before {
|
|
16398
|
-
color: var(--danger) !important;
|
|
16399
|
-
}
|
|
16400
|
-
.bs-checkbox-group.error input ~ label,
|
|
16401
|
-
.bs-radio-button-group.error input ~ label {
|
|
16402
|
-
color: var(--danger) !important;
|
|
16403
|
-
}
|
|
16404
16408
|
|
|
16405
16409
|
.bs-select-wrap {
|
|
16406
16410
|
position: relative;
|
|
@@ -17272,16 +17276,30 @@ html {
|
|
|
17272
17276
|
cursor: pointer;
|
|
17273
17277
|
}
|
|
17274
17278
|
|
|
17275
|
-
.bs-checkbox-group.modified input::before,
|
|
17276
|
-
.bs-radio-button-group.modified input::before
|
|
17279
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
17280
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
17281
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
17277
17282
|
color: var(--purple) !important;
|
|
17278
17283
|
}
|
|
17279
17284
|
|
|
17280
|
-
.bs-checkbox-group.modified input ~ label,
|
|
17281
|
-
.bs-radio-button-group.modified input ~ label
|
|
17285
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
17286
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
17287
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
17282
17288
|
color: var(--purple) !important;
|
|
17283
17289
|
}
|
|
17284
17290
|
|
|
17291
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
17292
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
17293
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
17294
|
+
color: var(--danger) !important;
|
|
17295
|
+
}
|
|
17296
|
+
|
|
17297
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
17298
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
17299
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
17300
|
+
color: var(--danger) !important;
|
|
17301
|
+
}
|
|
17302
|
+
|
|
17285
17303
|
.bs-checkbox-group.disabled input::before,
|
|
17286
17304
|
.bs-radio-button-group.disabled input::before {
|
|
17287
17305
|
color: var(--gray-400) !important;
|
|
@@ -17292,16 +17310,6 @@ html {
|
|
|
17292
17310
|
color: var(--gray-400) !important;
|
|
17293
17311
|
}
|
|
17294
17312
|
|
|
17295
|
-
.bs-checkbox-group.error input::before,
|
|
17296
|
-
.bs-radio-button-group.error input::before {
|
|
17297
|
-
color: var(--danger) !important;
|
|
17298
|
-
}
|
|
17299
|
-
|
|
17300
|
-
.bs-checkbox-group.error input ~ label,
|
|
17301
|
-
.bs-radio-button-group.error input ~ label {
|
|
17302
|
-
color: var(--danger) !important;
|
|
17303
|
-
}
|
|
17304
|
-
|
|
17305
17313
|
.bs-select-wrap {
|
|
17306
17314
|
position: relative;
|
|
17307
17315
|
outline: 0;
|
|
@@ -17872,16 +17880,30 @@ html {
|
|
|
17872
17880
|
cursor: pointer;
|
|
17873
17881
|
}
|
|
17874
17882
|
|
|
17875
|
-
.bs-checkbox-group.modified input::before,
|
|
17876
|
-
.bs-radio-button-group.modified input::before
|
|
17883
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
17884
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
17885
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
17877
17886
|
color: var(--purple) !important;
|
|
17878
17887
|
}
|
|
17879
17888
|
|
|
17880
|
-
.bs-checkbox-group.modified input ~ label,
|
|
17881
|
-
.bs-radio-button-group.modified input ~ label
|
|
17889
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
17890
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
17891
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
17882
17892
|
color: var(--purple) !important;
|
|
17883
17893
|
}
|
|
17884
17894
|
|
|
17895
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
17896
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
17897
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
17898
|
+
color: var(--danger) !important;
|
|
17899
|
+
}
|
|
17900
|
+
|
|
17901
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
17902
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
17903
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
17904
|
+
color: var(--danger) !important;
|
|
17905
|
+
}
|
|
17906
|
+
|
|
17885
17907
|
.bs-checkbox-group.disabled input::before,
|
|
17886
17908
|
.bs-radio-button-group.disabled input::before {
|
|
17887
17909
|
color: var(--gray-400) !important;
|
|
@@ -17892,16 +17914,6 @@ html {
|
|
|
17892
17914
|
color: var(--gray-400) !important;
|
|
17893
17915
|
}
|
|
17894
17916
|
|
|
17895
|
-
.bs-checkbox-group.error input::before,
|
|
17896
|
-
.bs-radio-button-group.error input::before {
|
|
17897
|
-
color: var(--danger) !important;
|
|
17898
|
-
}
|
|
17899
|
-
|
|
17900
|
-
.bs-checkbox-group.error input ~ label,
|
|
17901
|
-
.bs-radio-button-group.error input ~ label {
|
|
17902
|
-
color: var(--danger) !important;
|
|
17903
|
-
}
|
|
17904
|
-
|
|
17905
17917
|
.bs-select-wrap, .bs-select {
|
|
17906
17918
|
position: relative;
|
|
17907
17919
|
outline: 0;
|
|
@@ -18386,16 +18398,30 @@ html {
|
|
|
18386
18398
|
cursor: pointer;
|
|
18387
18399
|
}
|
|
18388
18400
|
|
|
18389
|
-
.bs-checkbox-group.modified input::before,
|
|
18390
|
-
.bs-radio-button-group.modified input::before
|
|
18401
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
18402
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
18403
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
18391
18404
|
color: var(--purple) !important;
|
|
18392
18405
|
}
|
|
18393
18406
|
|
|
18394
|
-
.bs-checkbox-group.modified input ~ label,
|
|
18395
|
-
.bs-radio-button-group.modified input ~ label
|
|
18407
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
18408
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
18409
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
18396
18410
|
color: var(--purple) !important;
|
|
18397
18411
|
}
|
|
18398
18412
|
|
|
18413
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
18414
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
18415
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
18416
|
+
color: var(--danger) !important;
|
|
18417
|
+
}
|
|
18418
|
+
|
|
18419
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
18420
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
18421
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
18422
|
+
color: var(--danger) !important;
|
|
18423
|
+
}
|
|
18424
|
+
|
|
18399
18425
|
.bs-checkbox-group.disabled input::before,
|
|
18400
18426
|
.bs-radio-button-group.disabled input::before {
|
|
18401
18427
|
color: var(--gray-400) !important;
|
|
@@ -18406,16 +18432,6 @@ html {
|
|
|
18406
18432
|
color: var(--gray-400) !important;
|
|
18407
18433
|
}
|
|
18408
18434
|
|
|
18409
|
-
.bs-checkbox-group.error input::before,
|
|
18410
|
-
.bs-radio-button-group.error input::before {
|
|
18411
|
-
color: var(--danger) !important;
|
|
18412
|
-
}
|
|
18413
|
-
|
|
18414
|
-
.bs-checkbox-group.error input ~ label,
|
|
18415
|
-
.bs-radio-button-group.error input ~ label {
|
|
18416
|
-
color: var(--danger) !important;
|
|
18417
|
-
}
|
|
18418
|
-
|
|
18419
18435
|
.bs-select-wrap {
|
|
18420
18436
|
position: relative;
|
|
18421
18437
|
outline: 0;
|
|
@@ -18962,16 +18978,30 @@ html {
|
|
|
18962
18978
|
cursor: pointer;
|
|
18963
18979
|
}
|
|
18964
18980
|
|
|
18965
|
-
.bs-checkbox-group.modified input::before,
|
|
18966
|
-
.bs-radio-button-group.modified input::before
|
|
18981
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
18982
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
18983
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
18967
18984
|
color: var(--purple) !important;
|
|
18968
18985
|
}
|
|
18969
18986
|
|
|
18970
|
-
.bs-checkbox-group.modified input ~ label,
|
|
18971
|
-
.bs-radio-button-group.modified input ~ label
|
|
18987
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
18988
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
18989
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
18972
18990
|
color: var(--purple) !important;
|
|
18973
18991
|
}
|
|
18974
18992
|
|
|
18993
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
18994
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
18995
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
18996
|
+
color: var(--danger) !important;
|
|
18997
|
+
}
|
|
18998
|
+
|
|
18999
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
19000
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
19001
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
19002
|
+
color: var(--danger) !important;
|
|
19003
|
+
}
|
|
19004
|
+
|
|
18975
19005
|
.bs-checkbox-group.disabled input::before,
|
|
18976
19006
|
.bs-radio-button-group.disabled input::before {
|
|
18977
19007
|
color: var(--gray-400) !important;
|
|
@@ -18982,16 +19012,6 @@ html {
|
|
|
18982
19012
|
color: var(--gray-400) !important;
|
|
18983
19013
|
}
|
|
18984
19014
|
|
|
18985
|
-
.bs-checkbox-group.error input::before,
|
|
18986
|
-
.bs-radio-button-group.error input::before {
|
|
18987
|
-
color: var(--danger) !important;
|
|
18988
|
-
}
|
|
18989
|
-
|
|
18990
|
-
.bs-checkbox-group.error input ~ label,
|
|
18991
|
-
.bs-radio-button-group.error input ~ label {
|
|
18992
|
-
color: var(--danger) !important;
|
|
18993
|
-
}
|
|
18994
|
-
|
|
18995
19015
|
.bs-select-wrap {
|
|
18996
19016
|
position: relative;
|
|
18997
19017
|
outline: 0;
|
|
@@ -20033,16 +20053,30 @@ html {
|
|
|
20033
20053
|
cursor: pointer;
|
|
20034
20054
|
}
|
|
20035
20055
|
|
|
20036
|
-
.bs-checkbox-group.modified input::before,
|
|
20037
|
-
.bs-radio-button-group.modified input::before
|
|
20056
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
20057
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
20058
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
20038
20059
|
color: var(--purple) !important;
|
|
20039
20060
|
}
|
|
20040
20061
|
|
|
20041
|
-
.bs-checkbox-group.modified input ~ label,
|
|
20042
|
-
.bs-radio-button-group.modified input ~ label
|
|
20062
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
20063
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
20064
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
20043
20065
|
color: var(--purple) !important;
|
|
20044
20066
|
}
|
|
20045
20067
|
|
|
20068
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
20069
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
20070
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
20071
|
+
color: var(--danger) !important;
|
|
20072
|
+
}
|
|
20073
|
+
|
|
20074
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
20075
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
20076
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
20077
|
+
color: var(--danger) !important;
|
|
20078
|
+
}
|
|
20079
|
+
|
|
20046
20080
|
.bs-checkbox-group.disabled input::before,
|
|
20047
20081
|
.bs-radio-button-group.disabled input::before {
|
|
20048
20082
|
color: var(--gray-400) !important;
|
|
@@ -20053,16 +20087,6 @@ html {
|
|
|
20053
20087
|
color: var(--gray-400) !important;
|
|
20054
20088
|
}
|
|
20055
20089
|
|
|
20056
|
-
.bs-checkbox-group.error input::before,
|
|
20057
|
-
.bs-radio-button-group.error input::before {
|
|
20058
|
-
color: var(--danger) !important;
|
|
20059
|
-
}
|
|
20060
|
-
|
|
20061
|
-
.bs-checkbox-group.error input ~ label,
|
|
20062
|
-
.bs-radio-button-group.error input ~ label {
|
|
20063
|
-
color: var(--danger) !important;
|
|
20064
|
-
}
|
|
20065
|
-
|
|
20066
20090
|
.bs-select-wrap {
|
|
20067
20091
|
position: relative;
|
|
20068
20092
|
outline: 0;
|
|
@@ -20683,16 +20707,30 @@ html {
|
|
|
20683
20707
|
cursor: pointer;
|
|
20684
20708
|
}
|
|
20685
20709
|
|
|
20686
|
-
.bs-checkbox-group.modified input::before,
|
|
20687
|
-
.bs-radio-button-group.modified input::before
|
|
20710
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
20711
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
20712
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
20688
20713
|
color: var(--purple) !important;
|
|
20689
20714
|
}
|
|
20690
20715
|
|
|
20691
|
-
.bs-checkbox-group.modified input ~ label,
|
|
20692
|
-
.bs-radio-button-group.modified input ~ label
|
|
20716
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
20717
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
20718
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
20693
20719
|
color: var(--purple) !important;
|
|
20694
20720
|
}
|
|
20695
20721
|
|
|
20722
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
20723
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
20724
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
20725
|
+
color: var(--danger) !important;
|
|
20726
|
+
}
|
|
20727
|
+
|
|
20728
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
20729
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
20730
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
20731
|
+
color: var(--danger) !important;
|
|
20732
|
+
}
|
|
20733
|
+
|
|
20696
20734
|
.bs-checkbox-group.disabled input::before,
|
|
20697
20735
|
.bs-radio-button-group.disabled input::before {
|
|
20698
20736
|
color: var(--gray-400) !important;
|
|
@@ -20703,16 +20741,6 @@ html {
|
|
|
20703
20741
|
color: var(--gray-400) !important;
|
|
20704
20742
|
}
|
|
20705
20743
|
|
|
20706
|
-
.bs-checkbox-group.error input::before,
|
|
20707
|
-
.bs-radio-button-group.error input::before {
|
|
20708
|
-
color: var(--danger) !important;
|
|
20709
|
-
}
|
|
20710
|
-
|
|
20711
|
-
.bs-checkbox-group.error input ~ label,
|
|
20712
|
-
.bs-radio-button-group.error input ~ label {
|
|
20713
|
-
color: var(--danger) !important;
|
|
20714
|
-
}
|
|
20715
|
-
|
|
20716
20744
|
.bs-select-wrap {
|
|
20717
20745
|
position: relative;
|
|
20718
20746
|
outline: 0;
|
|
@@ -21213,16 +21241,30 @@ html {
|
|
|
21213
21241
|
cursor: pointer;
|
|
21214
21242
|
}
|
|
21215
21243
|
|
|
21216
|
-
.bs-checkbox-group.modified input::before,
|
|
21217
|
-
.bs-radio-button-group.modified input::before
|
|
21244
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
21245
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
21246
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
21218
21247
|
color: var(--purple) !important;
|
|
21219
21248
|
}
|
|
21220
21249
|
|
|
21221
|
-
.bs-checkbox-group.modified input ~ label,
|
|
21222
|
-
.bs-radio-button-group.modified input ~ label
|
|
21250
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
21251
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
21252
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
21223
21253
|
color: var(--purple) !important;
|
|
21224
21254
|
}
|
|
21225
21255
|
|
|
21256
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
21257
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
21258
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
21259
|
+
color: var(--danger) !important;
|
|
21260
|
+
}
|
|
21261
|
+
|
|
21262
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
21263
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
21264
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
21265
|
+
color: var(--danger) !important;
|
|
21266
|
+
}
|
|
21267
|
+
|
|
21226
21268
|
.bs-checkbox-group.disabled input::before,
|
|
21227
21269
|
.bs-radio-button-group.disabled input::before {
|
|
21228
21270
|
color: var(--gray-400) !important;
|
|
@@ -21233,16 +21275,6 @@ html {
|
|
|
21233
21275
|
color: var(--gray-400) !important;
|
|
21234
21276
|
}
|
|
21235
21277
|
|
|
21236
|
-
.bs-checkbox-group.error input::before,
|
|
21237
|
-
.bs-radio-button-group.error input::before {
|
|
21238
|
-
color: var(--danger) !important;
|
|
21239
|
-
}
|
|
21240
|
-
|
|
21241
|
-
.bs-checkbox-group.error input ~ label,
|
|
21242
|
-
.bs-radio-button-group.error input ~ label {
|
|
21243
|
-
color: var(--danger) !important;
|
|
21244
|
-
}
|
|
21245
|
-
|
|
21246
21278
|
.bs-select-wrap {
|
|
21247
21279
|
position: relative;
|
|
21248
21280
|
outline: 0;
|
|
@@ -21795,16 +21827,30 @@ html {
|
|
|
21795
21827
|
cursor: pointer;
|
|
21796
21828
|
}
|
|
21797
21829
|
|
|
21798
|
-
.bs-checkbox-group.modified input::before,
|
|
21799
|
-
.bs-radio-button-group.modified input::before
|
|
21830
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
21831
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
21832
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
21800
21833
|
color: var(--purple) !important;
|
|
21801
21834
|
}
|
|
21802
21835
|
|
|
21803
|
-
.bs-checkbox-group.modified input ~ label,
|
|
21804
|
-
.bs-radio-button-group.modified input ~ label
|
|
21836
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
21837
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
21838
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
21805
21839
|
color: var(--purple) !important;
|
|
21806
21840
|
}
|
|
21807
21841
|
|
|
21842
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
21843
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
21844
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
21845
|
+
color: var(--danger) !important;
|
|
21846
|
+
}
|
|
21847
|
+
|
|
21848
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
21849
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
21850
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
21851
|
+
color: var(--danger) !important;
|
|
21852
|
+
}
|
|
21853
|
+
|
|
21808
21854
|
.bs-checkbox-group.disabled input::before,
|
|
21809
21855
|
.bs-radio-button-group.disabled input::before {
|
|
21810
21856
|
color: var(--gray-400) !important;
|
|
@@ -21815,16 +21861,6 @@ html {
|
|
|
21815
21861
|
color: var(--gray-400) !important;
|
|
21816
21862
|
}
|
|
21817
21863
|
|
|
21818
|
-
.bs-checkbox-group.error input::before,
|
|
21819
|
-
.bs-radio-button-group.error input::before {
|
|
21820
|
-
color: var(--danger) !important;
|
|
21821
|
-
}
|
|
21822
|
-
|
|
21823
|
-
.bs-checkbox-group.error input ~ label,
|
|
21824
|
-
.bs-radio-button-group.error input ~ label {
|
|
21825
|
-
color: var(--danger) !important;
|
|
21826
|
-
}
|
|
21827
|
-
|
|
21828
21864
|
.bs-select-wrap {
|
|
21829
21865
|
position: relative;
|
|
21830
21866
|
outline: 0;
|
|
@@ -22337,16 +22373,30 @@ html {
|
|
|
22337
22373
|
cursor: pointer;
|
|
22338
22374
|
}
|
|
22339
22375
|
|
|
22340
|
-
.bs-checkbox-group.modified input::before,
|
|
22341
|
-
.bs-radio-button-group.modified input::before
|
|
22376
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
22377
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
22378
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
22342
22379
|
color: var(--purple) !important;
|
|
22343
22380
|
}
|
|
22344
22381
|
|
|
22345
|
-
.bs-checkbox-group.modified input ~ label,
|
|
22346
|
-
.bs-radio-button-group.modified input ~ label
|
|
22382
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
22383
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
22384
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
22347
22385
|
color: var(--purple) !important;
|
|
22348
22386
|
}
|
|
22349
22387
|
|
|
22388
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
22389
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
22390
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
22391
|
+
color: var(--danger) !important;
|
|
22392
|
+
}
|
|
22393
|
+
|
|
22394
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
22395
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
22396
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
22397
|
+
color: var(--danger) !important;
|
|
22398
|
+
}
|
|
22399
|
+
|
|
22350
22400
|
.bs-checkbox-group.disabled input::before,
|
|
22351
22401
|
.bs-radio-button-group.disabled input::before {
|
|
22352
22402
|
color: var(--gray-400) !important;
|
|
@@ -22357,16 +22407,6 @@ html {
|
|
|
22357
22407
|
color: var(--gray-400) !important;
|
|
22358
22408
|
}
|
|
22359
22409
|
|
|
22360
|
-
.bs-checkbox-group.error input::before,
|
|
22361
|
-
.bs-radio-button-group.error input::before {
|
|
22362
|
-
color: var(--danger) !important;
|
|
22363
|
-
}
|
|
22364
|
-
|
|
22365
|
-
.bs-checkbox-group.error input ~ label,
|
|
22366
|
-
.bs-radio-button-group.error input ~ label {
|
|
22367
|
-
color: var(--danger) !important;
|
|
22368
|
-
}
|
|
22369
|
-
|
|
22370
22410
|
.bs-select-wrap {
|
|
22371
22411
|
position: relative;
|
|
22372
22412
|
outline: 0;
|
|
@@ -22883,16 +22923,30 @@ html {
|
|
|
22883
22923
|
cursor: pointer;
|
|
22884
22924
|
}
|
|
22885
22925
|
|
|
22886
|
-
.bs-checkbox-group.modified input::before,
|
|
22887
|
-
.bs-radio-button-group.modified input::before
|
|
22926
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
22927
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
22928
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
22888
22929
|
color: var(--purple) !important;
|
|
22889
22930
|
}
|
|
22890
22931
|
|
|
22891
|
-
.bs-checkbox-group.modified input ~ label,
|
|
22892
|
-
.bs-radio-button-group.modified input ~ label
|
|
22932
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
22933
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
22934
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
22893
22935
|
color: var(--purple) !important;
|
|
22894
22936
|
}
|
|
22895
22937
|
|
|
22938
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
22939
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
22940
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
22941
|
+
color: var(--danger) !important;
|
|
22942
|
+
}
|
|
22943
|
+
|
|
22944
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
22945
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
22946
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
22947
|
+
color: var(--danger) !important;
|
|
22948
|
+
}
|
|
22949
|
+
|
|
22896
22950
|
.bs-checkbox-group.disabled input::before,
|
|
22897
22951
|
.bs-radio-button-group.disabled input::before {
|
|
22898
22952
|
color: var(--gray-400) !important;
|
|
@@ -22903,16 +22957,6 @@ html {
|
|
|
22903
22957
|
color: var(--gray-400) !important;
|
|
22904
22958
|
}
|
|
22905
22959
|
|
|
22906
|
-
.bs-checkbox-group.error input::before,
|
|
22907
|
-
.bs-radio-button-group.error input::before {
|
|
22908
|
-
color: var(--danger) !important;
|
|
22909
|
-
}
|
|
22910
|
-
|
|
22911
|
-
.bs-checkbox-group.error input ~ label,
|
|
22912
|
-
.bs-radio-button-group.error input ~ label {
|
|
22913
|
-
color: var(--danger) !important;
|
|
22914
|
-
}
|
|
22915
|
-
|
|
22916
22960
|
.bs-select-wrap {
|
|
22917
22961
|
position: relative;
|
|
22918
22962
|
outline: 0;
|
|
@@ -23412,16 +23456,30 @@ html {
|
|
|
23412
23456
|
cursor: pointer;
|
|
23413
23457
|
}
|
|
23414
23458
|
|
|
23415
|
-
.bs-checkbox-group.modified input::before,
|
|
23416
|
-
.bs-radio-button-group.modified input::before
|
|
23459
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
23460
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
23461
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
23417
23462
|
color: var(--purple) !important;
|
|
23418
23463
|
}
|
|
23419
23464
|
|
|
23420
|
-
.bs-checkbox-group.modified input ~ label,
|
|
23421
|
-
.bs-radio-button-group.modified input ~ label
|
|
23465
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
23466
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
23467
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
23422
23468
|
color: var(--purple) !important;
|
|
23423
23469
|
}
|
|
23424
23470
|
|
|
23471
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
23472
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
23473
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
23474
|
+
color: var(--danger) !important;
|
|
23475
|
+
}
|
|
23476
|
+
|
|
23477
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
23478
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
23479
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
23480
|
+
color: var(--danger) !important;
|
|
23481
|
+
}
|
|
23482
|
+
|
|
23425
23483
|
.bs-checkbox-group.disabled input::before,
|
|
23426
23484
|
.bs-radio-button-group.disabled input::before {
|
|
23427
23485
|
color: var(--gray-400) !important;
|
|
@@ -23432,16 +23490,6 @@ html {
|
|
|
23432
23490
|
color: var(--gray-400) !important;
|
|
23433
23491
|
}
|
|
23434
23492
|
|
|
23435
|
-
.bs-checkbox-group.error input::before,
|
|
23436
|
-
.bs-radio-button-group.error input::before {
|
|
23437
|
-
color: var(--danger) !important;
|
|
23438
|
-
}
|
|
23439
|
-
|
|
23440
|
-
.bs-checkbox-group.error input ~ label,
|
|
23441
|
-
.bs-radio-button-group.error input ~ label {
|
|
23442
|
-
color: var(--danger) !important;
|
|
23443
|
-
}
|
|
23444
|
-
|
|
23445
23493
|
.bs-select-wrap {
|
|
23446
23494
|
position: relative;
|
|
23447
23495
|
outline: 0;
|
|
@@ -24087,16 +24135,30 @@ html {
|
|
|
24087
24135
|
cursor: pointer;
|
|
24088
24136
|
}
|
|
24089
24137
|
|
|
24090
|
-
.bs-checkbox-group.modified input::before,
|
|
24091
|
-
.bs-radio-button-group.modified input::before
|
|
24138
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
24139
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
24140
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
24092
24141
|
color: var(--purple) !important;
|
|
24093
24142
|
}
|
|
24094
24143
|
|
|
24095
|
-
.bs-checkbox-group.modified input ~ label,
|
|
24096
|
-
.bs-radio-button-group.modified input ~ label
|
|
24144
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
24145
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
24146
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
24097
24147
|
color: var(--purple) !important;
|
|
24098
24148
|
}
|
|
24099
24149
|
|
|
24150
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
24151
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
24152
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
24153
|
+
color: var(--danger) !important;
|
|
24154
|
+
}
|
|
24155
|
+
|
|
24156
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
24157
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
24158
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
24159
|
+
color: var(--danger) !important;
|
|
24160
|
+
}
|
|
24161
|
+
|
|
24100
24162
|
.bs-checkbox-group.disabled input::before,
|
|
24101
24163
|
.bs-radio-button-group.disabled input::before {
|
|
24102
24164
|
color: var(--gray-400) !important;
|
|
@@ -24107,16 +24169,6 @@ html {
|
|
|
24107
24169
|
color: var(--gray-400) !important;
|
|
24108
24170
|
}
|
|
24109
24171
|
|
|
24110
|
-
.bs-checkbox-group.error input::before,
|
|
24111
|
-
.bs-radio-button-group.error input::before {
|
|
24112
|
-
color: var(--danger) !important;
|
|
24113
|
-
}
|
|
24114
|
-
|
|
24115
|
-
.bs-checkbox-group.error input ~ label,
|
|
24116
|
-
.bs-radio-button-group.error input ~ label {
|
|
24117
|
-
color: var(--danger) !important;
|
|
24118
|
-
}
|
|
24119
|
-
|
|
24120
24172
|
.bs-select-wrap {
|
|
24121
24173
|
position: relative;
|
|
24122
24174
|
outline: 0;
|
|
@@ -24632,16 +24684,30 @@ html {
|
|
|
24632
24684
|
cursor: pointer;
|
|
24633
24685
|
}
|
|
24634
24686
|
|
|
24635
|
-
.bs-checkbox-group.modified input::before,
|
|
24636
|
-
.bs-radio-button-group.modified input::before
|
|
24687
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
24688
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
24689
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
24637
24690
|
color: var(--purple) !important;
|
|
24638
24691
|
}
|
|
24639
24692
|
|
|
24640
|
-
.bs-checkbox-group.modified input ~ label,
|
|
24641
|
-
.bs-radio-button-group.modified input ~ label
|
|
24693
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
24694
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
24695
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
24642
24696
|
color: var(--purple) !important;
|
|
24643
24697
|
}
|
|
24644
24698
|
|
|
24699
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
24700
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
24701
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
24702
|
+
color: var(--danger) !important;
|
|
24703
|
+
}
|
|
24704
|
+
|
|
24705
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
24706
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
24707
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
24708
|
+
color: var(--danger) !important;
|
|
24709
|
+
}
|
|
24710
|
+
|
|
24645
24711
|
.bs-checkbox-group.disabled input::before,
|
|
24646
24712
|
.bs-radio-button-group.disabled input::before {
|
|
24647
24713
|
color: var(--gray-400) !important;
|
|
@@ -24652,16 +24718,6 @@ html {
|
|
|
24652
24718
|
color: var(--gray-400) !important;
|
|
24653
24719
|
}
|
|
24654
24720
|
|
|
24655
|
-
.bs-checkbox-group.error input::before,
|
|
24656
|
-
.bs-radio-button-group.error input::before {
|
|
24657
|
-
color: var(--danger) !important;
|
|
24658
|
-
}
|
|
24659
|
-
|
|
24660
|
-
.bs-checkbox-group.error input ~ label,
|
|
24661
|
-
.bs-radio-button-group.error input ~ label {
|
|
24662
|
-
color: var(--danger) !important;
|
|
24663
|
-
}
|
|
24664
|
-
|
|
24665
24721
|
.bs-select-wrap, .bs-multi-select {
|
|
24666
24722
|
position: relative;
|
|
24667
24723
|
outline: 0;
|
|
@@ -25720,16 +25776,30 @@ html {
|
|
|
25720
25776
|
cursor: pointer;
|
|
25721
25777
|
}
|
|
25722
25778
|
|
|
25723
|
-
.bs-checkbox-group.modified input::before,
|
|
25724
|
-
.bs-radio-button-group.modified input::before
|
|
25779
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
25780
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
25781
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
25725
25782
|
color: var(--purple) !important;
|
|
25726
25783
|
}
|
|
25727
25784
|
|
|
25728
|
-
.bs-checkbox-group.modified input ~ label,
|
|
25729
|
-
.bs-radio-button-group.modified input ~ label
|
|
25785
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
25786
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
25787
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
25730
25788
|
color: var(--purple) !important;
|
|
25731
25789
|
}
|
|
25732
25790
|
|
|
25791
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
25792
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
25793
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
25794
|
+
color: var(--danger) !important;
|
|
25795
|
+
}
|
|
25796
|
+
|
|
25797
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
25798
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
25799
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
25800
|
+
color: var(--danger) !important;
|
|
25801
|
+
}
|
|
25802
|
+
|
|
25733
25803
|
.bs-checkbox-group.disabled input::before,
|
|
25734
25804
|
.bs-radio-button-group.disabled input::before {
|
|
25735
25805
|
color: var(--gray-400) !important;
|
|
@@ -25740,16 +25810,6 @@ html {
|
|
|
25740
25810
|
color: var(--gray-400) !important;
|
|
25741
25811
|
}
|
|
25742
25812
|
|
|
25743
|
-
.bs-checkbox-group.error input::before,
|
|
25744
|
-
.bs-radio-button-group.error input::before {
|
|
25745
|
-
color: var(--danger) !important;
|
|
25746
|
-
}
|
|
25747
|
-
|
|
25748
|
-
.bs-checkbox-group.error input ~ label,
|
|
25749
|
-
.bs-radio-button-group.error input ~ label {
|
|
25750
|
-
color: var(--danger) !important;
|
|
25751
|
-
}
|
|
25752
|
-
|
|
25753
25813
|
.bs-select-wrap, .bs-tree-select {
|
|
25754
25814
|
position: relative;
|
|
25755
25815
|
outline: 0;
|
|
@@ -26237,16 +26297,30 @@ html {
|
|
|
26237
26297
|
cursor: pointer;
|
|
26238
26298
|
}
|
|
26239
26299
|
|
|
26240
|
-
.bs-checkbox-group.modified input::before,
|
|
26241
|
-
.bs-radio-button-group.modified input::before
|
|
26300
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
26301
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
26302
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
26242
26303
|
color: var(--purple) !important;
|
|
26243
26304
|
}
|
|
26244
26305
|
|
|
26245
|
-
.bs-checkbox-group.modified input ~ label,
|
|
26246
|
-
.bs-radio-button-group.modified input ~ label
|
|
26306
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
26307
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
26308
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
26247
26309
|
color: var(--purple) !important;
|
|
26248
26310
|
}
|
|
26249
26311
|
|
|
26312
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
26313
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
26314
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
26315
|
+
color: var(--danger) !important;
|
|
26316
|
+
}
|
|
26317
|
+
|
|
26318
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
26319
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
26320
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
26321
|
+
color: var(--danger) !important;
|
|
26322
|
+
}
|
|
26323
|
+
|
|
26250
26324
|
.bs-checkbox-group.disabled input::before,
|
|
26251
26325
|
.bs-radio-button-group.disabled input::before {
|
|
26252
26326
|
color: var(--gray-400) !important;
|
|
@@ -26257,16 +26331,6 @@ html {
|
|
|
26257
26331
|
color: var(--gray-400) !important;
|
|
26258
26332
|
}
|
|
26259
26333
|
|
|
26260
|
-
.bs-checkbox-group.error input::before,
|
|
26261
|
-
.bs-radio-button-group.error input::before {
|
|
26262
|
-
color: var(--danger) !important;
|
|
26263
|
-
}
|
|
26264
|
-
|
|
26265
|
-
.bs-checkbox-group.error input ~ label,
|
|
26266
|
-
.bs-radio-button-group.error input ~ label {
|
|
26267
|
-
color: var(--danger) !important;
|
|
26268
|
-
}
|
|
26269
|
-
|
|
26270
26334
|
.bs-select-wrap, .bs-multi-tree-select {
|
|
26271
26335
|
position: relative;
|
|
26272
26336
|
outline: 0;
|
|
@@ -26763,16 +26827,30 @@ html {
|
|
|
26763
26827
|
cursor: pointer;
|
|
26764
26828
|
}
|
|
26765
26829
|
|
|
26766
|
-
.bs-checkbox-group.modified input::before,
|
|
26767
|
-
.bs-radio-button-group.modified input::before
|
|
26830
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
26831
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
26832
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
26768
26833
|
color: var(--purple) !important;
|
|
26769
26834
|
}
|
|
26770
26835
|
|
|
26771
|
-
.bs-checkbox-group.modified input ~ label,
|
|
26772
|
-
.bs-radio-button-group.modified input ~ label
|
|
26836
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
26837
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
26838
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
26773
26839
|
color: var(--purple) !important;
|
|
26774
26840
|
}
|
|
26775
26841
|
|
|
26842
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
26843
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
26844
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
26845
|
+
color: var(--danger) !important;
|
|
26846
|
+
}
|
|
26847
|
+
|
|
26848
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
26849
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
26850
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
26851
|
+
color: var(--danger) !important;
|
|
26852
|
+
}
|
|
26853
|
+
|
|
26776
26854
|
.bs-checkbox-group.disabled input::before,
|
|
26777
26855
|
.bs-radio-button-group.disabled input::before {
|
|
26778
26856
|
color: var(--gray-400) !important;
|
|
@@ -26783,16 +26861,6 @@ html {
|
|
|
26783
26861
|
color: var(--gray-400) !important;
|
|
26784
26862
|
}
|
|
26785
26863
|
|
|
26786
|
-
.bs-checkbox-group.error input::before,
|
|
26787
|
-
.bs-radio-button-group.error input::before {
|
|
26788
|
-
color: var(--danger) !important;
|
|
26789
|
-
}
|
|
26790
|
-
|
|
26791
|
-
.bs-checkbox-group.error input ~ label,
|
|
26792
|
-
.bs-radio-button-group.error input ~ label {
|
|
26793
|
-
color: var(--danger) !important;
|
|
26794
|
-
}
|
|
26795
|
-
|
|
26796
26864
|
.bs-select-wrap {
|
|
26797
26865
|
position: relative;
|
|
26798
26866
|
outline: 0;
|
|
@@ -27388,16 +27456,30 @@ div[data-v-c1655c12] {
|
|
|
27388
27456
|
cursor: pointer;
|
|
27389
27457
|
}
|
|
27390
27458
|
|
|
27391
|
-
.bs-checkbox-group.modified input::before,
|
|
27392
|
-
.bs-radio-button-group.modified input::before
|
|
27459
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
27460
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
27461
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
27393
27462
|
color: var(--purple) !important;
|
|
27394
27463
|
}
|
|
27395
27464
|
|
|
27396
|
-
.bs-checkbox-group.modified input ~ label,
|
|
27397
|
-
.bs-radio-button-group.modified input ~ label
|
|
27465
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
27466
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
27467
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
27398
27468
|
color: var(--purple) !important;
|
|
27399
27469
|
}
|
|
27400
27470
|
|
|
27471
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
27472
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
27473
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
27474
|
+
color: var(--danger) !important;
|
|
27475
|
+
}
|
|
27476
|
+
|
|
27477
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
27478
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
27479
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
27480
|
+
color: var(--danger) !important;
|
|
27481
|
+
}
|
|
27482
|
+
|
|
27401
27483
|
.bs-checkbox-group.disabled input::before,
|
|
27402
27484
|
.bs-radio-button-group.disabled input::before {
|
|
27403
27485
|
color: var(--gray-400) !important;
|
|
@@ -27408,16 +27490,6 @@ div[data-v-c1655c12] {
|
|
|
27408
27490
|
color: var(--gray-400) !important;
|
|
27409
27491
|
}
|
|
27410
27492
|
|
|
27411
|
-
.bs-checkbox-group.error input::before,
|
|
27412
|
-
.bs-radio-button-group.error input::before {
|
|
27413
|
-
color: var(--danger) !important;
|
|
27414
|
-
}
|
|
27415
|
-
|
|
27416
|
-
.bs-checkbox-group.error input ~ label,
|
|
27417
|
-
.bs-radio-button-group.error input ~ label {
|
|
27418
|
-
color: var(--danger) !important;
|
|
27419
|
-
}
|
|
27420
|
-
|
|
27421
27493
|
.bs-select-wrap {
|
|
27422
27494
|
position: relative;
|
|
27423
27495
|
outline: 0;
|
|
@@ -28371,16 +28443,30 @@ div[data-v-c1655c12] {
|
|
|
28371
28443
|
cursor: pointer;
|
|
28372
28444
|
}
|
|
28373
28445
|
|
|
28374
|
-
.bs-checkbox-group.modified input::before,
|
|
28375
|
-
.bs-radio-button-group.modified input::before
|
|
28446
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
28447
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
28448
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
28376
28449
|
color: var(--purple) !important;
|
|
28377
28450
|
}
|
|
28378
28451
|
|
|
28379
|
-
.bs-checkbox-group.modified input ~ label,
|
|
28380
|
-
.bs-radio-button-group.modified input ~ label
|
|
28452
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
28453
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
28454
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
28381
28455
|
color: var(--purple) !important;
|
|
28382
28456
|
}
|
|
28383
28457
|
|
|
28458
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
28459
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
28460
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
28461
|
+
color: var(--danger) !important;
|
|
28462
|
+
}
|
|
28463
|
+
|
|
28464
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
28465
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
28466
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
28467
|
+
color: var(--danger) !important;
|
|
28468
|
+
}
|
|
28469
|
+
|
|
28384
28470
|
.bs-checkbox-group.disabled input::before,
|
|
28385
28471
|
.bs-radio-button-group.disabled input::before {
|
|
28386
28472
|
color: var(--gray-400) !important;
|
|
@@ -28391,16 +28477,6 @@ div[data-v-c1655c12] {
|
|
|
28391
28477
|
color: var(--gray-400) !important;
|
|
28392
28478
|
}
|
|
28393
28479
|
|
|
28394
|
-
.bs-checkbox-group.error input::before,
|
|
28395
|
-
.bs-radio-button-group.error input::before {
|
|
28396
|
-
color: var(--danger) !important;
|
|
28397
|
-
}
|
|
28398
|
-
|
|
28399
|
-
.bs-checkbox-group.error input ~ label,
|
|
28400
|
-
.bs-radio-button-group.error input ~ label {
|
|
28401
|
-
color: var(--danger) !important;
|
|
28402
|
-
}
|
|
28403
|
-
|
|
28404
28480
|
.bs-select-wrap {
|
|
28405
28481
|
position: relative;
|
|
28406
28482
|
outline: 0;
|
|
@@ -28955,16 +29031,30 @@ div[data-v-c1655c12] {
|
|
|
28955
29031
|
cursor: pointer;
|
|
28956
29032
|
}
|
|
28957
29033
|
|
|
28958
|
-
.bs-checkbox-group.modified input::before,
|
|
28959
|
-
.bs-radio-button-group.modified input::before
|
|
29034
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
|
|
29035
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
|
|
29036
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
|
|
28960
29037
|
color: var(--purple) !important;
|
|
28961
29038
|
}
|
|
28962
29039
|
|
|
28963
|
-
.bs-checkbox-group.modified input ~ label,
|
|
28964
|
-
.bs-radio-button-group.modified input ~ label
|
|
29040
|
+
.bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
|
|
29041
|
+
.bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
|
|
29042
|
+
.bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
|
|
28965
29043
|
color: var(--purple) !important;
|
|
28966
29044
|
}
|
|
28967
29045
|
|
|
29046
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
|
|
29047
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
|
|
29048
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
|
|
29049
|
+
color: var(--danger) !important;
|
|
29050
|
+
}
|
|
29051
|
+
|
|
29052
|
+
.bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
|
|
29053
|
+
.bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
|
|
29054
|
+
.bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
|
|
29055
|
+
color: var(--danger) !important;
|
|
29056
|
+
}
|
|
29057
|
+
|
|
28968
29058
|
.bs-checkbox-group.disabled input::before,
|
|
28969
29059
|
.bs-radio-button-group.disabled input::before {
|
|
28970
29060
|
color: var(--gray-400) !important;
|
|
@@ -28975,16 +29065,6 @@ div[data-v-c1655c12] {
|
|
|
28975
29065
|
color: var(--gray-400) !important;
|
|
28976
29066
|
}
|
|
28977
29067
|
|
|
28978
|
-
.bs-checkbox-group.error input::before,
|
|
28979
|
-
.bs-radio-button-group.error input::before {
|
|
28980
|
-
color: var(--danger) !important;
|
|
28981
|
-
}
|
|
28982
|
-
|
|
28983
|
-
.bs-checkbox-group.error input ~ label,
|
|
28984
|
-
.bs-radio-button-group.error input ~ label {
|
|
28985
|
-
color: var(--danger) !important;
|
|
28986
|
-
}
|
|
28987
|
-
|
|
28988
29068
|
.bs-select-wrap {
|
|
28989
29069
|
position: relative;
|
|
28990
29070
|
outline: 0;
|