@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/cadmin.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>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.83.
|
|
19
|
+
* Clay 3.83.1
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -6634,6 +6634,9 @@ html:not(#__):not(#___) .cadmin select.form-control:disabled, html:not(#__):not(
|
|
|
6634
6634
|
html:not(#__):not(#___) .cadmin select.form-control:disabled > option, html:not(#__):not(#___) .cadmin select.form-control.disabled > option {
|
|
6635
6635
|
cursor: not-allowed;
|
|
6636
6636
|
}
|
|
6637
|
+
html:not(#__):not(#___) .cadmin select.form-control option {
|
|
6638
|
+
cursor: pointer;
|
|
6639
|
+
}
|
|
6637
6640
|
html:not(#__):not(#___) .cadmin select.form-control::-ms-expand {
|
|
6638
6641
|
display: none;
|
|
6639
6642
|
}
|
|
@@ -6678,6 +6681,12 @@ html:not(#__):not(#___) .cadmin select.form-control[size]:focus > option:checked
|
|
|
6678
6681
|
background-image: linear-gradient(#ffa700, #ffa700);
|
|
6679
6682
|
filter: invert(100%);
|
|
6680
6683
|
}
|
|
6684
|
+
html:not(#__):not(#___) .cadmin select.form-control[size] option {
|
|
6685
|
+
padding: 7px 8px;
|
|
6686
|
+
}
|
|
6687
|
+
html:not(#__):not(#___) .cadmin select.form-control[size] option:checked {
|
|
6688
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
6689
|
+
}
|
|
6681
6690
|
@-moz-document url-prefix() {
|
|
6682
6691
|
html:not(#__):not(#___) .cadmin select.form-control[size]:focus > option:checked, html:not(#__):not(#___) .cadmin select.form-control[size].focus > option:checked {
|
|
6683
6692
|
background-image: linear-gradient(#004ad7, #004ad7);
|
|
@@ -6702,6 +6711,12 @@ html:not(#__):not(#___) .cadmin select.form-control[multiple]:focus > option:che
|
|
|
6702
6711
|
background-image: linear-gradient(#ffa700, #ffa700);
|
|
6703
6712
|
filter: invert(100%);
|
|
6704
6713
|
}
|
|
6714
|
+
html:not(#__):not(#___) .cadmin select.form-control[multiple] option {
|
|
6715
|
+
padding: 7px 8px;
|
|
6716
|
+
}
|
|
6717
|
+
html:not(#__):not(#___) .cadmin select.form-control[multiple] option:checked {
|
|
6718
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
6719
|
+
}
|
|
6705
6720
|
@-moz-document url-prefix() {
|
|
6706
6721
|
html:not(#__):not(#___) .cadmin select.form-control[multiple]:focus > option:checked, html:not(#__):not(#___) .cadmin select.form-control[multiple].focus > option:checked {
|
|
6707
6722
|
background-image: linear-gradient(#004ad7, #004ad7);
|