@clayui/css 3.98.0 → 3.99.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/lib/css/atlas.css +181 -1
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +181 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +142 -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/cadmin/variables/_utilities.scss +170 -0
- package/src/scss/variables/_utilities.scss +155 -0
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.99.0
|
|
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>
|
|
@@ -24907,6 +24907,106 @@ ul.autofit-row {
|
|
|
24907
24907
|
vertical-align: text-top !important;
|
|
24908
24908
|
}
|
|
24909
24909
|
|
|
24910
|
+
.bg-blue {
|
|
24911
|
+
background-color: #007bff !important;
|
|
24912
|
+
}
|
|
24913
|
+
|
|
24914
|
+
a.bg-blue:hover, a.bg-blue:focus,
|
|
24915
|
+
button.bg-blue:hover,
|
|
24916
|
+
button.bg-blue:focus {
|
|
24917
|
+
background-color: #0062cc !important;
|
|
24918
|
+
}
|
|
24919
|
+
|
|
24920
|
+
.bg-indigo {
|
|
24921
|
+
background-color: #6610f2 !important;
|
|
24922
|
+
}
|
|
24923
|
+
|
|
24924
|
+
a.bg-indigo:hover, a.bg-indigo:focus,
|
|
24925
|
+
button.bg-indigo:hover,
|
|
24926
|
+
button.bg-indigo:focus {
|
|
24927
|
+
background-color: #510bc4 !important;
|
|
24928
|
+
}
|
|
24929
|
+
|
|
24930
|
+
.bg-purple {
|
|
24931
|
+
background-color: #6f42c1 !important;
|
|
24932
|
+
}
|
|
24933
|
+
|
|
24934
|
+
a.bg-purple:hover, a.bg-purple:focus,
|
|
24935
|
+
button.bg-purple:hover,
|
|
24936
|
+
button.bg-purple:focus {
|
|
24937
|
+
background-color: #59339d !important;
|
|
24938
|
+
}
|
|
24939
|
+
|
|
24940
|
+
.bg-pink {
|
|
24941
|
+
background-color: #e83e8c !important;
|
|
24942
|
+
}
|
|
24943
|
+
|
|
24944
|
+
a.bg-pink:hover, a.bg-pink:focus,
|
|
24945
|
+
button.bg-pink:hover,
|
|
24946
|
+
button.bg-pink:focus {
|
|
24947
|
+
background-color: #d91a72 !important;
|
|
24948
|
+
}
|
|
24949
|
+
|
|
24950
|
+
.bg-red {
|
|
24951
|
+
background-color: #dc3545 !important;
|
|
24952
|
+
}
|
|
24953
|
+
|
|
24954
|
+
a.bg-red:hover, a.bg-red:focus,
|
|
24955
|
+
button.bg-red:hover,
|
|
24956
|
+
button.bg-red:focus {
|
|
24957
|
+
background-color: #bd2130 !important;
|
|
24958
|
+
}
|
|
24959
|
+
|
|
24960
|
+
.bg-orange {
|
|
24961
|
+
background-color: #fd7e14 !important;
|
|
24962
|
+
}
|
|
24963
|
+
|
|
24964
|
+
a.bg-orange:hover, a.bg-orange:focus,
|
|
24965
|
+
button.bg-orange:hover,
|
|
24966
|
+
button.bg-orange:focus {
|
|
24967
|
+
background-color: #dc6502 !important;
|
|
24968
|
+
}
|
|
24969
|
+
|
|
24970
|
+
.bg-yellow {
|
|
24971
|
+
background-color: #ffc107 !important;
|
|
24972
|
+
}
|
|
24973
|
+
|
|
24974
|
+
a.bg-yellow:hover, a.bg-yellow:focus,
|
|
24975
|
+
button.bg-yellow:hover,
|
|
24976
|
+
button.bg-yellow:focus {
|
|
24977
|
+
background-color: #d39e00 !important;
|
|
24978
|
+
}
|
|
24979
|
+
|
|
24980
|
+
.bg-green {
|
|
24981
|
+
background-color: #28a745 !important;
|
|
24982
|
+
}
|
|
24983
|
+
|
|
24984
|
+
a.bg-green:hover, a.bg-green:focus,
|
|
24985
|
+
button.bg-green:hover,
|
|
24986
|
+
button.bg-green:focus {
|
|
24987
|
+
background-color: #1e7e34 !important;
|
|
24988
|
+
}
|
|
24989
|
+
|
|
24990
|
+
.bg-teal {
|
|
24991
|
+
background-color: #20c997 !important;
|
|
24992
|
+
}
|
|
24993
|
+
|
|
24994
|
+
a.bg-teal:hover, a.bg-teal:focus,
|
|
24995
|
+
button.bg-teal:hover,
|
|
24996
|
+
button.bg-teal:focus {
|
|
24997
|
+
background-color: #199d76 !important;
|
|
24998
|
+
}
|
|
24999
|
+
|
|
25000
|
+
.bg-cyan {
|
|
25001
|
+
background-color: #17a2b8 !important;
|
|
25002
|
+
}
|
|
25003
|
+
|
|
25004
|
+
a.bg-cyan:hover, a.bg-cyan:focus,
|
|
25005
|
+
button.bg-cyan:hover,
|
|
25006
|
+
button.bg-cyan:focus {
|
|
25007
|
+
background-color: #117a8b !important;
|
|
25008
|
+
}
|
|
25009
|
+
|
|
24910
25010
|
.bg-primary {
|
|
24911
25011
|
background-color: #007bff !important;
|
|
24912
25012
|
}
|
|
@@ -29808,6 +29908,86 @@ button.bg-dark:focus {
|
|
|
29808
29908
|
color: #fff !important;
|
|
29809
29909
|
}
|
|
29810
29910
|
|
|
29911
|
+
.text-blue {
|
|
29912
|
+
color: #007bff !important;
|
|
29913
|
+
}
|
|
29914
|
+
|
|
29915
|
+
a.text-blue:hover, a.text-blue:focus {
|
|
29916
|
+
color: #0056b3 !important;
|
|
29917
|
+
}
|
|
29918
|
+
|
|
29919
|
+
.text-indigo {
|
|
29920
|
+
color: #6610f2 !important;
|
|
29921
|
+
}
|
|
29922
|
+
|
|
29923
|
+
a.text-indigo:hover, a.text-indigo:focus {
|
|
29924
|
+
color: #4709ac !important;
|
|
29925
|
+
}
|
|
29926
|
+
|
|
29927
|
+
.text-purple {
|
|
29928
|
+
color: #6f42c1 !important;
|
|
29929
|
+
}
|
|
29930
|
+
|
|
29931
|
+
a.text-purple:hover, a.text-purple:focus {
|
|
29932
|
+
color: #4e2d89 !important;
|
|
29933
|
+
}
|
|
29934
|
+
|
|
29935
|
+
.text-pink {
|
|
29936
|
+
color: #e83e8c !important;
|
|
29937
|
+
}
|
|
29938
|
+
|
|
29939
|
+
a.text-pink:hover, a.text-pink:focus {
|
|
29940
|
+
color: #c21766 !important;
|
|
29941
|
+
}
|
|
29942
|
+
|
|
29943
|
+
.text-red {
|
|
29944
|
+
color: #dc3545 !important;
|
|
29945
|
+
}
|
|
29946
|
+
|
|
29947
|
+
a.text-red:hover, a.text-red:focus {
|
|
29948
|
+
color: #a71d2a !important;
|
|
29949
|
+
}
|
|
29950
|
+
|
|
29951
|
+
.text-orange {
|
|
29952
|
+
color: #fd7e14 !important;
|
|
29953
|
+
}
|
|
29954
|
+
|
|
29955
|
+
a.text-orange:hover, a.text-orange:focus {
|
|
29956
|
+
color: #c35a02 !important;
|
|
29957
|
+
}
|
|
29958
|
+
|
|
29959
|
+
.text-yellow {
|
|
29960
|
+
color: #ffc107 !important;
|
|
29961
|
+
}
|
|
29962
|
+
|
|
29963
|
+
a.text-yellow:hover, a.text-yellow:focus {
|
|
29964
|
+
color: #ba8b00 !important;
|
|
29965
|
+
}
|
|
29966
|
+
|
|
29967
|
+
.text-green {
|
|
29968
|
+
color: #28a745 !important;
|
|
29969
|
+
}
|
|
29970
|
+
|
|
29971
|
+
a.text-green:hover, a.text-green:focus {
|
|
29972
|
+
color: #19692c !important;
|
|
29973
|
+
}
|
|
29974
|
+
|
|
29975
|
+
.text-teal {
|
|
29976
|
+
color: #20c997 !important;
|
|
29977
|
+
}
|
|
29978
|
+
|
|
29979
|
+
a.text-teal:hover, a.text-teal:focus {
|
|
29980
|
+
color: #158765 !important;
|
|
29981
|
+
}
|
|
29982
|
+
|
|
29983
|
+
.text-cyan {
|
|
29984
|
+
color: #17a2b8 !important;
|
|
29985
|
+
}
|
|
29986
|
+
|
|
29987
|
+
a.text-cyan:hover, a.text-cyan:focus {
|
|
29988
|
+
color: #0f6674 !important;
|
|
29989
|
+
}
|
|
29990
|
+
|
|
29811
29991
|
.text-primary {
|
|
29812
29992
|
color: #007bff !important;
|
|
29813
29993
|
}
|