@carbon/styles 1.17.0-rc.2 → 1.17.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 +105 -9
- package/css/styles.min.css +1 -1
- package/package.json +4 -4
- package/scss/components/data-table/_data-table.scss +0 -20
- package/scss/components/fluid-date-picker/_fluid-date-picker.scss +61 -0
- package/scss/components/form/_form.scss +11 -0
- package/scss/components/multiselect/_multiselect.scss +38 -0
package/css/styles.css
CHANGED
|
@@ -4826,6 +4826,17 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4826
4826
|
}
|
|
4827
4827
|
}
|
|
4828
4828
|
|
|
4829
|
+
input:-webkit-autofill,
|
|
4830
|
+
input:-webkit-autofill:hover,
|
|
4831
|
+
input:-webkit-autofill:focus,
|
|
4832
|
+
textarea:-webkit-autofill,
|
|
4833
|
+
textarea:-webkit-autofill:hover,
|
|
4834
|
+
textarea:-webkit-autofill:focus {
|
|
4835
|
+
-webkit-box-shadow: 0 0 0 1000px var(--cds-field) inset;
|
|
4836
|
+
box-shadow: 0 0 0 1000px var(--cds-field) inset;
|
|
4837
|
+
-webkit-text-fill-color: var(--cds-text-primary, #161616);
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4829
4840
|
.cds--fieldset html {
|
|
4830
4841
|
font-size: 100%;
|
|
4831
4842
|
}
|
|
@@ -8662,15 +8673,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8662
8673
|
transition: background-color 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
8663
8674
|
}
|
|
8664
8675
|
|
|
8665
|
-
.cds--data-table .cds--table-column-checkbox .cds--checkbox:focus + .cds--checkbox-label::before {
|
|
8666
|
-
outline-offset: 0.375rem;
|
|
8667
|
-
}
|
|
8668
|
-
|
|
8669
|
-
.cds--data-table--compact .cds--table-column-checkbox .cds--checkbox:focus + .cds--checkbox-label::before,
|
|
8670
|
-
.cds--data-table--xs .cds--table-column-checkbox .cds--checkbox:focus + .cds--checkbox-label::before {
|
|
8671
|
-
outline-offset: 0.125rem;
|
|
8672
|
-
}
|
|
8673
|
-
|
|
8674
8676
|
.cds--data-table thead th.cds--table-column-checkbox,
|
|
8675
8677
|
.cds--data-table tbody td.cds--table-column-checkbox,
|
|
8676
8678
|
.cds--data-table thead th.cds--table-expand,
|
|
@@ -12942,6 +12944,70 @@ button.cds--dropdown-text:focus {
|
|
|
12942
12944
|
top: 5rem;
|
|
12943
12945
|
}
|
|
12944
12946
|
|
|
12947
|
+
.cds--date-picker--fluid__skeleton {
|
|
12948
|
+
height: 4rem;
|
|
12949
|
+
border-bottom: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
12950
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
12951
|
+
}
|
|
12952
|
+
|
|
12953
|
+
.cds--date-picker--fluid__skeleton--container {
|
|
12954
|
+
position: relative;
|
|
12955
|
+
width: 100%;
|
|
12956
|
+
height: 4rem;
|
|
12957
|
+
padding: 0.8125rem 2.5rem 0.8125rem 1rem;
|
|
12958
|
+
}
|
|
12959
|
+
|
|
12960
|
+
.cds--date-picker--fluid__skeleton .cds--skeleton {
|
|
12961
|
+
height: 1rem;
|
|
12962
|
+
}
|
|
12963
|
+
|
|
12964
|
+
.cds--date-picker--fluid__skeleton .cds--label {
|
|
12965
|
+
margin-bottom: 0.25rem;
|
|
12966
|
+
}
|
|
12967
|
+
|
|
12968
|
+
.cds--date-picker--fluid__skeleton .cds--text-input {
|
|
12969
|
+
width: 80%;
|
|
12970
|
+
height: 1.125rem;
|
|
12971
|
+
}
|
|
12972
|
+
|
|
12973
|
+
.cds--date-picker--fluid__skeleton--container .cds--date-picker__icon {
|
|
12974
|
+
top: auto;
|
|
12975
|
+
bottom: 0.125rem;
|
|
12976
|
+
}
|
|
12977
|
+
|
|
12978
|
+
.cds--date-picker--fluid__skeleton--range {
|
|
12979
|
+
display: -webkit-box;
|
|
12980
|
+
display: -ms-flexbox;
|
|
12981
|
+
display: flex;
|
|
12982
|
+
-webkit-box-orient: horizontal;
|
|
12983
|
+
-webkit-box-direction: normal;
|
|
12984
|
+
-ms-flex-direction: row;
|
|
12985
|
+
flex-direction: row;
|
|
12986
|
+
}
|
|
12987
|
+
|
|
12988
|
+
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container {
|
|
12989
|
+
display: -webkit-box;
|
|
12990
|
+
display: -ms-flexbox;
|
|
12991
|
+
display: flex;
|
|
12992
|
+
width: 50%;
|
|
12993
|
+
-webkit-box-orient: vertical;
|
|
12994
|
+
-webkit-box-direction: normal;
|
|
12995
|
+
-ms-flex-direction: column;
|
|
12996
|
+
flex-direction: column;
|
|
12997
|
+
}
|
|
12998
|
+
|
|
12999
|
+
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container:first-of-type {
|
|
13000
|
+
border-right: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
13001
|
+
}
|
|
13002
|
+
|
|
13003
|
+
.cds--date-picker--fluid__skeleton--range .cds--text-input {
|
|
13004
|
+
width: 100%;
|
|
13005
|
+
}
|
|
13006
|
+
|
|
13007
|
+
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container .cds--date-picker__icon {
|
|
13008
|
+
bottom: 0.3125rem;
|
|
13009
|
+
}
|
|
13010
|
+
|
|
12945
13011
|
.cds--list-box__wrapper--fluid .cds--multi-select--filterable--input-focused {
|
|
12946
13012
|
outline: none;
|
|
12947
13013
|
outline-offset: 0;
|
|
@@ -14450,6 +14516,36 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14450
14516
|
visibility: hidden;
|
|
14451
14517
|
}
|
|
14452
14518
|
|
|
14519
|
+
.cds--multi-select.cds--multi-select--readonly,
|
|
14520
|
+
.cds--multi-select.cds--multi-select--readonly:hover {
|
|
14521
|
+
background-color: transparent;
|
|
14522
|
+
}
|
|
14523
|
+
|
|
14524
|
+
.cds--multi-select.cds--multi-select--readonly .cds--list-box__menu-icon svg {
|
|
14525
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
14526
|
+
}
|
|
14527
|
+
|
|
14528
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag--filter,
|
|
14529
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag__close-icon:hover {
|
|
14530
|
+
background-color: transparent;
|
|
14531
|
+
color: var(--cds-text-primary, #161616);
|
|
14532
|
+
cursor: default;
|
|
14533
|
+
}
|
|
14534
|
+
|
|
14535
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag--filter {
|
|
14536
|
+
-webkit-box-shadow: 0 0 0 1px var(--cds-background-inverse, #393939);
|
|
14537
|
+
box-shadow: 0 0 0 1px var(--cds-background-inverse, #393939);
|
|
14538
|
+
}
|
|
14539
|
+
|
|
14540
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag--filter svg {
|
|
14541
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
14542
|
+
}
|
|
14543
|
+
|
|
14544
|
+
.cds--multi-select.cds--multi-select--readonly .cds--list-box__field,
|
|
14545
|
+
.cds--multi-select.cds--multi-select--readonly .cds--list-box__menu-icon {
|
|
14546
|
+
cursor: default;
|
|
14547
|
+
}
|
|
14548
|
+
|
|
14453
14549
|
.cds--inline-notification {
|
|
14454
14550
|
position: relative;
|
|
14455
14551
|
display: -webkit-box;
|