@clayui/css 3.83.0 → 3.83.1
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/lib/css/atlas.css +18 -1
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +12 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +17 -2
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/mixins/_forms.scss +2 -2
- package/src/scss/variables/_forms.scss +1 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.83.
|
|
3
|
+
* Clay 3.83.1
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -7589,6 +7589,9 @@ select.form-control:disabled, select.form-control.disabled {
|
|
|
7589
7589
|
select.form-control:disabled > option, select.form-control.disabled > option {
|
|
7590
7590
|
cursor: not-allowed;
|
|
7591
7591
|
}
|
|
7592
|
+
select.form-control option {
|
|
7593
|
+
cursor: pointer;
|
|
7594
|
+
}
|
|
7592
7595
|
select.form-control::-ms-expand {
|
|
7593
7596
|
display: none;
|
|
7594
7597
|
}
|
|
@@ -7623,6 +7626,7 @@ select.form-control:focus::-ms-value {
|
|
|
7623
7626
|
select.form-control[size] {
|
|
7624
7627
|
background-image: none;
|
|
7625
7628
|
height: auto;
|
|
7629
|
+
margin-left: 0;
|
|
7626
7630
|
padding-left: 0.5rem;
|
|
7627
7631
|
padding-right: 0.5rem;
|
|
7628
7632
|
scrollbar-width: thin;
|
|
@@ -7636,6 +7640,12 @@ select.form-control[size]:focus > option:checked, select.form-control[size].focu
|
|
|
7636
7640
|
color: #fff;
|
|
7637
7641
|
filter: invert(100%);
|
|
7638
7642
|
}
|
|
7643
|
+
select.form-control[size] option {
|
|
7644
|
+
padding: 0.4375rem 0.5rem;
|
|
7645
|
+
}
|
|
7646
|
+
select.form-control[size] option:checked {
|
|
7647
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
7648
|
+
}
|
|
7639
7649
|
@-moz-document url-prefix() {
|
|
7640
7650
|
select.form-control[size]:focus > option:checked, select.form-control[size].focus > option:checked {
|
|
7641
7651
|
background-image: linear-gradient(#004ad7, #004ad7);
|
|
@@ -7649,6 +7659,7 @@ select.form-control[size]:focus > option:checked, select.form-control[size].focu
|
|
|
7649
7659
|
select.form-control[multiple] {
|
|
7650
7660
|
background-image: none;
|
|
7651
7661
|
height: auto;
|
|
7662
|
+
margin-left: 0;
|
|
7652
7663
|
padding-left: 0.5rem;
|
|
7653
7664
|
padding-right: 0.5rem;
|
|
7654
7665
|
scrollbar-width: thin;
|
|
@@ -7662,6 +7673,12 @@ select.form-control[multiple]:focus > option:checked, select.form-control[multip
|
|
|
7662
7673
|
color: #fff;
|
|
7663
7674
|
filter: invert(100%);
|
|
7664
7675
|
}
|
|
7676
|
+
select.form-control[multiple] option {
|
|
7677
|
+
padding: 0.4375rem 0.5rem;
|
|
7678
|
+
}
|
|
7679
|
+
select.form-control[multiple] option:checked {
|
|
7680
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
7681
|
+
}
|
|
7665
7682
|
@-moz-document url-prefix() {
|
|
7666
7683
|
select.form-control[multiple]:focus > option:checked, select.form-control[multiple].focus > option:checked {
|
|
7667
7684
|
background-image: linear-gradient(#004ad7, #004ad7);
|