@carbon/styles 1.18.0-rc.0 → 1.19.0-rc.0
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/styles.css +280 -29
- package/css/styles.min.css +1 -1
- package/package.json +9 -9
- package/scss/components/_index.scss +1 -0
- package/scss/components/combo-box/_combo-box.scss +16 -0
- package/scss/components/dropdown/_dropdown.scss +15 -0
- package/scss/components/fluid-date-picker/_fluid-date-picker.scss +14 -11
- package/scss/components/fluid-list-box/_fluid-list-box.scss +4 -4
- package/scss/components/fluid-select/_fluid-select.scss +31 -9
- package/scss/components/fluid-text-input/_fluid-text-input.scss +12 -8
- package/scss/components/fluid-time-picker/_fluid-time-picker.scss +235 -0
- package/scss/components/fluid-time-picker/_index.scss +11 -0
- package/scss/components/text-area/_text-area.scss +7 -0
- package/scss/components/text-input/_text-input.scss +11 -0
package/css/styles.css
CHANGED
|
@@ -6569,6 +6569,17 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6569
6569
|
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
6570
6570
|
}
|
|
6571
6571
|
|
|
6572
|
+
.cds--text-input__counter-alert {
|
|
6573
|
+
position: absolute;
|
|
6574
|
+
overflow: hidden;
|
|
6575
|
+
width: 1px;
|
|
6576
|
+
height: 1px;
|
|
6577
|
+
padding: 0;
|
|
6578
|
+
border: 0;
|
|
6579
|
+
margin: -1px;
|
|
6580
|
+
clip: rect(0, 0, 0, 0);
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6572
6583
|
.cds--text-input:disabled {
|
|
6573
6584
|
outline: 2px solid transparent;
|
|
6574
6585
|
outline-offset: -2px;
|
|
@@ -8034,6 +8045,21 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8034
8045
|
padding: 0;
|
|
8035
8046
|
}
|
|
8036
8047
|
|
|
8048
|
+
.cds--combo-box--readonly,
|
|
8049
|
+
.cds--combo-box--readonly:hover {
|
|
8050
|
+
background-color: transparent;
|
|
8051
|
+
}
|
|
8052
|
+
|
|
8053
|
+
.cds--combo-box--readonly .cds--list-box__menu-icon,
|
|
8054
|
+
.cds--combo-box--readonly .cds--list-box__selection {
|
|
8055
|
+
cursor: default;
|
|
8056
|
+
}
|
|
8057
|
+
|
|
8058
|
+
.cds--combo-box--readonly .cds--list-box__menu-icon svg,
|
|
8059
|
+
.cds--combo-box--readonly .cds--list-box__selection svg {
|
|
8060
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8037
8063
|
.cds--contained-list__header {
|
|
8038
8064
|
position: -webkit-sticky;
|
|
8039
8065
|
position: sticky;
|
|
@@ -12003,6 +12029,20 @@ button.cds--dropdown-text:focus {
|
|
|
12003
12029
|
}
|
|
12004
12030
|
}
|
|
12005
12031
|
|
|
12032
|
+
.cds--dropdown--readonly,
|
|
12033
|
+
.cds--dropdown--readonly:hover {
|
|
12034
|
+
background-color: transparent;
|
|
12035
|
+
}
|
|
12036
|
+
|
|
12037
|
+
.cds--dropdown--readonly .cds--list-box__field,
|
|
12038
|
+
.cds--dropdown--readonly .cds--list-box__menu-icon {
|
|
12039
|
+
cursor: default;
|
|
12040
|
+
}
|
|
12041
|
+
|
|
12042
|
+
.cds--dropdown--readonly .cds--list-box__menu-icon svg {
|
|
12043
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
12044
|
+
}
|
|
12045
|
+
|
|
12006
12046
|
.cds--loading {
|
|
12007
12047
|
-webkit-box-sizing: border-box;
|
|
12008
12048
|
box-sizing: border-box;
|
|
@@ -12767,19 +12807,19 @@ button.cds--dropdown-text:focus {
|
|
|
12767
12807
|
|
|
12768
12808
|
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field {
|
|
12769
12809
|
position: absolute;
|
|
12770
|
-
|
|
12810
|
+
top: 2.25rem;
|
|
12771
12811
|
left: 1rem;
|
|
12772
12812
|
width: 50%;
|
|
12773
|
-
height:
|
|
12813
|
+
height: 0.5rem;
|
|
12774
12814
|
padding: 0;
|
|
12775
12815
|
}
|
|
12776
12816
|
|
|
12777
12817
|
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label {
|
|
12778
12818
|
position: absolute;
|
|
12779
|
-
top:
|
|
12819
|
+
top: 1rem;
|
|
12780
12820
|
left: 1rem;
|
|
12781
12821
|
width: 25%;
|
|
12782
|
-
height:
|
|
12822
|
+
height: 0.5rem;
|
|
12783
12823
|
}
|
|
12784
12824
|
|
|
12785
12825
|
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field,
|
|
@@ -13025,12 +13065,15 @@ button.cds--dropdown-text:focus {
|
|
|
13025
13065
|
.cds--date-picker--fluid__skeleton--container {
|
|
13026
13066
|
position: relative;
|
|
13027
13067
|
width: 100%;
|
|
13028
|
-
height:
|
|
13029
|
-
padding: 0.8125rem 2.5rem 0.8125rem 1rem;
|
|
13068
|
+
height: 100%;
|
|
13030
13069
|
}
|
|
13031
13070
|
|
|
13032
13071
|
.cds--date-picker--fluid__skeleton .cds--skeleton {
|
|
13033
|
-
|
|
13072
|
+
position: absolute;
|
|
13073
|
+
top: 1rem;
|
|
13074
|
+
left: 1rem;
|
|
13075
|
+
width: 25%;
|
|
13076
|
+
height: 0.5rem;
|
|
13034
13077
|
}
|
|
13035
13078
|
|
|
13036
13079
|
.cds--date-picker--fluid__skeleton .cds--label {
|
|
@@ -13038,13 +13081,17 @@ button.cds--dropdown-text:focus {
|
|
|
13038
13081
|
}
|
|
13039
13082
|
|
|
13040
13083
|
.cds--date-picker--fluid__skeleton .cds--text-input {
|
|
13041
|
-
|
|
13042
|
-
|
|
13084
|
+
position: absolute;
|
|
13085
|
+
top: 2.25rem;
|
|
13086
|
+
left: 1rem;
|
|
13087
|
+
width: 50%;
|
|
13088
|
+
height: 0.5rem;
|
|
13089
|
+
padding: 0;
|
|
13043
13090
|
}
|
|
13044
13091
|
|
|
13045
13092
|
.cds--date-picker--fluid__skeleton--container .cds--date-picker__icon {
|
|
13046
13093
|
top: auto;
|
|
13047
|
-
bottom: 0.
|
|
13094
|
+
bottom: 0.5rem;
|
|
13048
13095
|
}
|
|
13049
13096
|
|
|
13050
13097
|
.cds--date-picker--fluid__skeleton--range {
|
|
@@ -13072,12 +13119,8 @@ button.cds--dropdown-text:focus {
|
|
|
13072
13119
|
border-right: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
13073
13120
|
}
|
|
13074
13121
|
|
|
13075
|
-
.cds--date-picker--fluid__skeleton--range .cds--text-input {
|
|
13076
|
-
width: 100%;
|
|
13077
|
-
}
|
|
13078
|
-
|
|
13079
13122
|
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container .cds--date-picker__icon {
|
|
13080
|
-
bottom: 0.
|
|
13123
|
+
bottom: 0.5rem;
|
|
13081
13124
|
}
|
|
13082
13125
|
|
|
13083
13126
|
.cds--list-box__wrapper--fluid .cds--multi-select--filterable--input-focused {
|
|
@@ -13415,13 +13458,13 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13415
13458
|
|
|
13416
13459
|
.cds--select--fluid .cds--select-input {
|
|
13417
13460
|
min-height: 4rem;
|
|
13418
|
-
padding: 2rem
|
|
13461
|
+
padding: 2rem 2rem 0.8125rem 1rem;
|
|
13419
13462
|
outline: none;
|
|
13463
|
+
text-overflow: ellipsis;
|
|
13420
13464
|
}
|
|
13421
13465
|
|
|
13422
13466
|
.cds--select--fluid .cds--select__arrow {
|
|
13423
|
-
top:
|
|
13424
|
-
bottom: 1rem;
|
|
13467
|
+
top: 2rem;
|
|
13425
13468
|
height: 1rem;
|
|
13426
13469
|
}
|
|
13427
13470
|
|
|
@@ -13431,13 +13474,12 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13431
13474
|
transition: border-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
13432
13475
|
}
|
|
13433
13476
|
|
|
13434
|
-
.cds--select--fluid .cds--select--invalid {
|
|
13477
|
+
.cds--select--fluid .cds--select--invalid .cds--select-input__wrapper {
|
|
13435
13478
|
outline: 2px solid var(--cds-support-error, #da1e28);
|
|
13436
13479
|
outline-offset: -2px;
|
|
13437
|
-
outline-offset: 0;
|
|
13438
13480
|
}
|
|
13439
13481
|
@media screen and (prefers-contrast) {
|
|
13440
|
-
.cds--select--fluid .cds--select--invalid {
|
|
13482
|
+
.cds--select--fluid .cds--select--invalid .cds--select-input__wrapper {
|
|
13441
13483
|
outline-style: dotted;
|
|
13442
13484
|
}
|
|
13443
13485
|
}
|
|
@@ -13453,6 +13495,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13453
13495
|
|
|
13454
13496
|
.cds--select--fluid .cds--select-input__wrapper[data-invalid] .cds--select-input,
|
|
13455
13497
|
.cds--select--fluid .cds--select--warning .cds--select-input {
|
|
13498
|
+
padding-right: 2rem;
|
|
13456
13499
|
border-bottom: 1px solid transparent;
|
|
13457
13500
|
}
|
|
13458
13501
|
|
|
@@ -13460,11 +13503,29 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13460
13503
|
border-bottom: 1px solid var(--cds-border-strong);
|
|
13461
13504
|
}
|
|
13462
13505
|
|
|
13506
|
+
.cds--select--fluid .cds--select-input__wrapper {
|
|
13507
|
+
-webkit-box-orient: vertical;
|
|
13508
|
+
-webkit-box-direction: normal;
|
|
13509
|
+
-ms-flex-direction: column;
|
|
13510
|
+
flex-direction: column;
|
|
13511
|
+
}
|
|
13512
|
+
|
|
13463
13513
|
.cds--select--fluid .cds--select-input__wrapper[data-invalid] .cds--select-input:not(:focus),
|
|
13464
13514
|
.cds--select--fluid .cds--select--warning .cds--select-input:not(:focus) {
|
|
13465
13515
|
outline: none;
|
|
13466
13516
|
}
|
|
13467
13517
|
|
|
13518
|
+
.cds--select--fluid .cds--select-input__wrapper[data-invalid] .cds--form-requirement,
|
|
13519
|
+
.cds--select--fluid .cds--select--warning .cds--form-requirement {
|
|
13520
|
+
display: block;
|
|
13521
|
+
overflow: visible;
|
|
13522
|
+
max-height: 100%;
|
|
13523
|
+
}
|
|
13524
|
+
|
|
13525
|
+
.cds--select--fluid .cds--select-input__wrapper[data-invalid] .cds--form-requirement {
|
|
13526
|
+
color: var(--cds-text-error, #da1e28);
|
|
13527
|
+
}
|
|
13528
|
+
|
|
13468
13529
|
.cds--select--fluid .cds--form-requirement {
|
|
13469
13530
|
padding: 0.5rem 2.5rem 0.5rem 1rem;
|
|
13470
13531
|
margin: 0;
|
|
@@ -13482,13 +13543,12 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13482
13543
|
pointer-events: none;
|
|
13483
13544
|
}
|
|
13484
13545
|
|
|
13485
|
-
.cds--select--fluid .cds--select--fluid--focus {
|
|
13546
|
+
.cds--select--fluid .cds--select--fluid--focus .cds--select-input__wrapper {
|
|
13486
13547
|
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
13487
13548
|
outline-offset: -2px;
|
|
13488
|
-
outline-offset: 0;
|
|
13489
13549
|
}
|
|
13490
13550
|
@media screen and (prefers-contrast) {
|
|
13491
|
-
.cds--select--fluid .cds--select--fluid--focus {
|
|
13551
|
+
.cds--select--fluid .cds--select--fluid--focus .cds--select-input__wrapper {
|
|
13492
13552
|
outline-style: dotted;
|
|
13493
13553
|
}
|
|
13494
13554
|
}
|
|
@@ -13781,22 +13841,209 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13781
13841
|
|
|
13782
13842
|
.cds--text-input--fluid__skeleton {
|
|
13783
13843
|
position: relative;
|
|
13784
|
-
height:
|
|
13785
|
-
padding: 1rem;
|
|
13844
|
+
height: 4rem;
|
|
13786
13845
|
border-bottom: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
13787
13846
|
background: var(--cds-skeleton-background, #e8e8e8);
|
|
13788
13847
|
}
|
|
13789
13848
|
|
|
13790
13849
|
.cds--text-input--fluid__skeleton .cds--skeleton {
|
|
13850
|
+
position: absolute;
|
|
13851
|
+
top: 1rem;
|
|
13852
|
+
left: 1rem;
|
|
13853
|
+
width: 25%;
|
|
13791
13854
|
height: 0.5rem;
|
|
13792
13855
|
}
|
|
13793
13856
|
|
|
13794
13857
|
.cds--text-input--fluid__skeleton .cds--label {
|
|
13795
|
-
|
|
13858
|
+
position: absolute;
|
|
13859
|
+
top: 2.25rem;
|
|
13860
|
+
left: 1rem;
|
|
13861
|
+
width: 50%;
|
|
13862
|
+
height: 0.5rem;
|
|
13863
|
+
padding: 0;
|
|
13796
13864
|
}
|
|
13797
13865
|
|
|
13798
|
-
.cds--
|
|
13799
|
-
|
|
13866
|
+
.cds--time-picker--fluid {
|
|
13867
|
+
background: var(--cds-field);
|
|
13868
|
+
}
|
|
13869
|
+
|
|
13870
|
+
.cds--time-picker--fluid .cds--time-picker--fluid__wrapper {
|
|
13871
|
+
display: -webkit-box;
|
|
13872
|
+
display: -ms-flexbox;
|
|
13873
|
+
display: flex;
|
|
13874
|
+
}
|
|
13875
|
+
|
|
13876
|
+
.cds--time-picker--fluid__wrapper > *:nth-child(1),
|
|
13877
|
+
.cds--time-picker--fluid__wrapper > *:nth-child(2) {
|
|
13878
|
+
-ms-flex-preferred-size: 25%;
|
|
13879
|
+
flex-basis: 25%;
|
|
13880
|
+
}
|
|
13881
|
+
|
|
13882
|
+
.cds--time-picker--equal-width .cds--time-picker--fluid__wrapper > * {
|
|
13883
|
+
-ms-flex-preferred-size: 50%;
|
|
13884
|
+
flex-basis: 50%;
|
|
13885
|
+
}
|
|
13886
|
+
|
|
13887
|
+
.cds--time-picker--fluid__wrapper > *:nth-child(2):not(:last-child) .cds--select-input__wrapper::before,
|
|
13888
|
+
.cds--time-picker--fluid__wrapper > *:last-child .cds--select-input__wrapper::before {
|
|
13889
|
+
position: absolute;
|
|
13890
|
+
display: block;
|
|
13891
|
+
width: 1px;
|
|
13892
|
+
height: calc(100% - 1px);
|
|
13893
|
+
background-color: var(--cds-border-strong);
|
|
13894
|
+
content: "";
|
|
13895
|
+
opacity: 1;
|
|
13896
|
+
-webkit-transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
13897
|
+
transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
13898
|
+
}
|
|
13899
|
+
|
|
13900
|
+
.cds--time-picker--fluid__wrapper .cds--select-input__wrapper::after {
|
|
13901
|
+
right: 0;
|
|
13902
|
+
}
|
|
13903
|
+
|
|
13904
|
+
.cds--time-picker--fluid__wrapper .cds--select-input__wrapper::before {
|
|
13905
|
+
left: 0;
|
|
13906
|
+
}
|
|
13907
|
+
|
|
13908
|
+
.cds--time-picker--fluid:not(.cds--time-picker--fluid--disabled) .cds--time-picker--fluid__wrapper > *:nth-child(2):not(:last-child):hover .cds--select-input__wrapper::before,
|
|
13909
|
+
.cds--time-picker--fluid:not(.cds--time-picker--fluid--disabled) .cds--time-picker--fluid__wrapper > *:nth-child(2):hover:not(:last-child) ~ * .cds--select-input__wrapper::before,
|
|
13910
|
+
.cds--time-picker--fluid:not(.cds--time-picker--fluid--disabled) .cds--time-picker--fluid__wrapper > *:last-child:hover .cds--select-input__wrapper::before {
|
|
13911
|
+
opacity: 0;
|
|
13912
|
+
}
|
|
13913
|
+
|
|
13914
|
+
.cds--time-picker--fluid--disabled .cds--time-picker--fluid__wrapper .cds--select--disabled .cds--select-input__wrapper::before {
|
|
13915
|
+
background: var(--cds-border-disabled, #c6c6c6);
|
|
13916
|
+
}
|
|
13917
|
+
|
|
13918
|
+
.cds--time-picker--fluid .cds--form-requirement {
|
|
13919
|
+
padding: 0.5rem 2.5rem 0.5rem 1rem;
|
|
13920
|
+
margin: 0;
|
|
13921
|
+
background: var(--cds-field);
|
|
13922
|
+
}
|
|
13923
|
+
|
|
13924
|
+
.cds--time-picker--fluid--invalid {
|
|
13925
|
+
outline: 2px solid var(--cds-support-error, #da1e28);
|
|
13926
|
+
outline-offset: -2px;
|
|
13927
|
+
position: relative;
|
|
13928
|
+
}
|
|
13929
|
+
@media screen and (prefers-contrast) {
|
|
13930
|
+
.cds--time-picker--fluid--invalid {
|
|
13931
|
+
outline-style: dotted;
|
|
13932
|
+
}
|
|
13933
|
+
}
|
|
13934
|
+
|
|
13935
|
+
.cds--time-picker--fluid--invalid .cds--text-input,
|
|
13936
|
+
.cds--time-picker--fluid--invalid .cds--text-input-wrapper,
|
|
13937
|
+
.cds--time-picker--fluid--invalid .cds--select-input,
|
|
13938
|
+
.cds--time-picker--fluid--invalid .cds--select {
|
|
13939
|
+
background: transparent;
|
|
13940
|
+
}
|
|
13941
|
+
|
|
13942
|
+
.cds--time-picker--fluid--invalid .cds--select-input {
|
|
13943
|
+
padding-top: 1.875rem;
|
|
13944
|
+
border-top: 2px solid transparent;
|
|
13945
|
+
}
|
|
13946
|
+
|
|
13947
|
+
.cds--select--fluid:last-of-type .cds--select-input {
|
|
13948
|
+
border-right: 2px solid transparent;
|
|
13949
|
+
}
|
|
13950
|
+
|
|
13951
|
+
.cds--time-picker--fluid--invalid .cds--select-input:hover:not([disabled]) {
|
|
13952
|
+
background: var(--cds-field-hover);
|
|
13953
|
+
}
|
|
13954
|
+
|
|
13955
|
+
.cds--time-picker--fluid--invalid .cds--select-input:hover {
|
|
13956
|
+
border-top: 2px solid var(--cds-support-error, #da1e28);
|
|
13957
|
+
}
|
|
13958
|
+
|
|
13959
|
+
.cds--time-picker--fluid--invalid .cds--select--fluid:last-of-type .cds--select-input:hover {
|
|
13960
|
+
border-right: 2px solid var(--cds-support-error, #da1e28);
|
|
13961
|
+
}
|
|
13962
|
+
|
|
13963
|
+
.cds--time-picker--fluid--warning {
|
|
13964
|
+
position: relative;
|
|
13965
|
+
}
|
|
13966
|
+
|
|
13967
|
+
.cds--time-picker__icon {
|
|
13968
|
+
display: none;
|
|
13969
|
+
}
|
|
13970
|
+
|
|
13971
|
+
.cds--time-picker--fluid--invalid .cds--time-picker__icon,
|
|
13972
|
+
.cds--time-picker--fluid--warning .cds--time-picker__icon {
|
|
13973
|
+
position: absolute;
|
|
13974
|
+
top: 4.5rem;
|
|
13975
|
+
right: 1rem;
|
|
13976
|
+
display: block;
|
|
13977
|
+
}
|
|
13978
|
+
|
|
13979
|
+
.cds--time-picker--fluid--invalid .cds--time-picker__icon {
|
|
13980
|
+
fill: var(--cds-support-error, #da1e28);
|
|
13981
|
+
}
|
|
13982
|
+
|
|
13983
|
+
.cds--time-picker--fluid--warning .cds--time-picker__icon {
|
|
13984
|
+
fill: var(--cds-support-warning, #f1c21b);
|
|
13985
|
+
}
|
|
13986
|
+
|
|
13987
|
+
.cds--time-picker--fluid--warning .cds--time-picker__icon path:first-of-type {
|
|
13988
|
+
fill: var(--cds-icon-primary, #161616);
|
|
13989
|
+
}
|
|
13990
|
+
|
|
13991
|
+
.cds--time-picker--fluid--invalid .cds--form-requirement,
|
|
13992
|
+
.cds--time-picker--fluid--warning .cds--form-requirement {
|
|
13993
|
+
display: block;
|
|
13994
|
+
overflow: visible;
|
|
13995
|
+
max-height: 100%;
|
|
13996
|
+
}
|
|
13997
|
+
|
|
13998
|
+
.cds--time-picker--fluid--invalid .cds--form-requirement {
|
|
13999
|
+
color: var(--cds-text-error, #da1e28);
|
|
14000
|
+
}
|
|
14001
|
+
|
|
14002
|
+
.cds--time-picker--fluid--invalid .cds--time-picker--fluid__wrapper > *:nth-child(2):not(:last-child) .cds--select-input__wrapper::before,
|
|
14003
|
+
.cds--time-picker--fluid--invalid .cds--time-picker--fluid__wrapper > *:last-child .cds--select-input__wrapper::before,
|
|
14004
|
+
.cds--time-picker--fluid--warning .cds--time-picker--fluid__wrapper > *:nth-child(2):not(:last-child) .cds--select-input__wrapper::before,
|
|
14005
|
+
.cds--time-picker--fluid--warning .cds--time-picker--fluid__wrapper > *:last-child .cds--select-input__wrapper::before {
|
|
14006
|
+
top: 8px;
|
|
14007
|
+
height: calc(100% - 1rem);
|
|
14008
|
+
}
|
|
14009
|
+
|
|
14010
|
+
.cds--time-picker--fluid--invalid .cds--text-input,
|
|
14011
|
+
.cds--time-picker--fluid--warning .cds--text-input,
|
|
14012
|
+
.cds--time-picker--fluid--invalid .cds--select-input,
|
|
14013
|
+
.cds--time-picker--fluid--warning .cds--select-input {
|
|
14014
|
+
border-bottom: 1px solid transparent;
|
|
14015
|
+
}
|
|
14016
|
+
|
|
14017
|
+
.cds--time-picker--fluid.cds--time-picker--fluid--invalid .cds--time-picker__divider,
|
|
14018
|
+
.cds--time-picker--fluid.cds--time-picker--fluid--warning .cds--time-picker__divider {
|
|
14019
|
+
width: calc(100% - 2rem);
|
|
14020
|
+
border-style: solid;
|
|
14021
|
+
border-color: var(--cds-border-subtle);
|
|
14022
|
+
border-bottom: none;
|
|
14023
|
+
margin: 0 1rem;
|
|
14024
|
+
}
|
|
14025
|
+
|
|
14026
|
+
.cds--time-picker--fluid--skeleton {
|
|
14027
|
+
display: -webkit-box;
|
|
14028
|
+
display: -ms-flexbox;
|
|
14029
|
+
display: flex;
|
|
14030
|
+
width: 100%;
|
|
14031
|
+
height: 4rem;
|
|
14032
|
+
}
|
|
14033
|
+
|
|
14034
|
+
.cds--time-picker--fluid--skeleton > * {
|
|
14035
|
+
width: auto;
|
|
14036
|
+
height: 100%;
|
|
14037
|
+
}
|
|
14038
|
+
|
|
14039
|
+
.cds--time-picker--fluid--skeleton > *:nth-child(1),
|
|
14040
|
+
.cds--time-picker--fluid--skeleton > *:nth-child(2) {
|
|
14041
|
+
width: 25%;
|
|
14042
|
+
}
|
|
14043
|
+
|
|
14044
|
+
.cds--time-picker--fluid--skeleton > *:last-child,
|
|
14045
|
+
.cds--time-picker--fluid--skeleton.cds--time-picker--equal-width > *:first-child {
|
|
14046
|
+
width: 50%;
|
|
13800
14047
|
}
|
|
13801
14048
|
|
|
13802
14049
|
@-webkit-keyframes stroke {
|
|
@@ -20444,6 +20691,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20444
20691
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
20445
20692
|
}
|
|
20446
20693
|
|
|
20694
|
+
.cds--text-area__wrapper--readonly .cds--text-area {
|
|
20695
|
+
background: transparent;
|
|
20696
|
+
}
|
|
20697
|
+
|
|
20447
20698
|
.cds--text-area.cds--text-area--light:disabled {
|
|
20448
20699
|
background-color: var(--cds-field-02, #ffffff);
|
|
20449
20700
|
}
|