@clayui/css 3.98.0 → 3.100.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 +204 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +204 -5
- 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/flags-es-AR.svg +1 -1
- package/lib/images/icons/flags-es-CO.svg +1 -1
- package/lib/images/icons/flags-es-MX.svg +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/flags-es-AR.svg +1 -1
- package/src/images/icons/flags-es-CO.svg +1 -1
- package/src/images/icons/flags-es-MX.svg +1 -1
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/cadmin/variables/_utilities.scss +170 -0
- package/src/scss/functions/_lx-icons-generated.scss +3 -3
- package/src/scss/variables/_badges.scss +6 -1
- package/src/scss/variables/_buttons.scss +17 -3
- 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.100.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>
|
|
@@ -1677,18 +1677,32 @@ input[type=button].btn-block {
|
|
|
1677
1677
|
text-decoration: none;
|
|
1678
1678
|
}
|
|
1679
1679
|
.btn-beta {
|
|
1680
|
-
background-color:
|
|
1680
|
+
background-color: rgba(19, 132, 150, 0.04);
|
|
1681
1681
|
color: #138496;
|
|
1682
1682
|
text-transform: uppercase;
|
|
1683
1683
|
}
|
|
1684
1684
|
.btn-beta:hover {
|
|
1685
|
-
background-color:
|
|
1685
|
+
background-color: rgba(19, 132, 150, 0.06);
|
|
1686
1686
|
color: #138496;
|
|
1687
1687
|
}
|
|
1688
1688
|
.btn-beta:focus, .focus.btn-beta {
|
|
1689
|
-
background-color:
|
|
1689
|
+
background-color: rgba(19, 132, 150, 0.06);
|
|
1690
1690
|
color: #138496;
|
|
1691
1691
|
}
|
|
1692
|
+
.btn-beta-dark {
|
|
1693
|
+
background-color: rgba(135, 226, 240, 0.04);
|
|
1694
|
+
border-color: transparent;
|
|
1695
|
+
color: #5ad7ea;
|
|
1696
|
+
text-transform: uppercase;
|
|
1697
|
+
}
|
|
1698
|
+
.btn-beta-dark:hover {
|
|
1699
|
+
background-color: rgba(135, 226, 240, 0.06);
|
|
1700
|
+
color: #5ad7ea;
|
|
1701
|
+
}
|
|
1702
|
+
.btn-beta-dark:focus, .focus.btn-beta-dark {
|
|
1703
|
+
background-color: rgba(135, 226, 240, 0.06);
|
|
1704
|
+
color: #5ad7ea;
|
|
1705
|
+
}
|
|
1692
1706
|
.btn-outline-primary {
|
|
1693
1707
|
border-color: #007bff;
|
|
1694
1708
|
color: #007bff;
|
|
@@ -4134,10 +4148,15 @@ input[type=button].btn-block {
|
|
|
4134
4148
|
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
|
|
4135
4149
|
}
|
|
4136
4150
|
.badge-beta {
|
|
4137
|
-
background-color:
|
|
4151
|
+
background-color: rgba(19, 132, 150, 0.04);
|
|
4138
4152
|
color: #138496;
|
|
4139
4153
|
text-transform: uppercase;
|
|
4140
4154
|
}
|
|
4155
|
+
.badge-beta-dark {
|
|
4156
|
+
background-color: rgba(135, 226, 240, 0.04);
|
|
4157
|
+
color: #5ad7ea;
|
|
4158
|
+
text-transform: uppercase;
|
|
4159
|
+
}
|
|
4141
4160
|
.breadcrumb {
|
|
4142
4161
|
background-color: #e9ecef;
|
|
4143
4162
|
border-radius: 0.25rem;
|
|
@@ -24907,6 +24926,106 @@ ul.autofit-row {
|
|
|
24907
24926
|
vertical-align: text-top !important;
|
|
24908
24927
|
}
|
|
24909
24928
|
|
|
24929
|
+
.bg-blue {
|
|
24930
|
+
background-color: #007bff !important;
|
|
24931
|
+
}
|
|
24932
|
+
|
|
24933
|
+
a.bg-blue:hover, a.bg-blue:focus,
|
|
24934
|
+
button.bg-blue:hover,
|
|
24935
|
+
button.bg-blue:focus {
|
|
24936
|
+
background-color: #0062cc !important;
|
|
24937
|
+
}
|
|
24938
|
+
|
|
24939
|
+
.bg-indigo {
|
|
24940
|
+
background-color: #6610f2 !important;
|
|
24941
|
+
}
|
|
24942
|
+
|
|
24943
|
+
a.bg-indigo:hover, a.bg-indigo:focus,
|
|
24944
|
+
button.bg-indigo:hover,
|
|
24945
|
+
button.bg-indigo:focus {
|
|
24946
|
+
background-color: #510bc4 !important;
|
|
24947
|
+
}
|
|
24948
|
+
|
|
24949
|
+
.bg-purple {
|
|
24950
|
+
background-color: #6f42c1 !important;
|
|
24951
|
+
}
|
|
24952
|
+
|
|
24953
|
+
a.bg-purple:hover, a.bg-purple:focus,
|
|
24954
|
+
button.bg-purple:hover,
|
|
24955
|
+
button.bg-purple:focus {
|
|
24956
|
+
background-color: #59339d !important;
|
|
24957
|
+
}
|
|
24958
|
+
|
|
24959
|
+
.bg-pink {
|
|
24960
|
+
background-color: #e83e8c !important;
|
|
24961
|
+
}
|
|
24962
|
+
|
|
24963
|
+
a.bg-pink:hover, a.bg-pink:focus,
|
|
24964
|
+
button.bg-pink:hover,
|
|
24965
|
+
button.bg-pink:focus {
|
|
24966
|
+
background-color: #d91a72 !important;
|
|
24967
|
+
}
|
|
24968
|
+
|
|
24969
|
+
.bg-red {
|
|
24970
|
+
background-color: #dc3545 !important;
|
|
24971
|
+
}
|
|
24972
|
+
|
|
24973
|
+
a.bg-red:hover, a.bg-red:focus,
|
|
24974
|
+
button.bg-red:hover,
|
|
24975
|
+
button.bg-red:focus {
|
|
24976
|
+
background-color: #bd2130 !important;
|
|
24977
|
+
}
|
|
24978
|
+
|
|
24979
|
+
.bg-orange {
|
|
24980
|
+
background-color: #fd7e14 !important;
|
|
24981
|
+
}
|
|
24982
|
+
|
|
24983
|
+
a.bg-orange:hover, a.bg-orange:focus,
|
|
24984
|
+
button.bg-orange:hover,
|
|
24985
|
+
button.bg-orange:focus {
|
|
24986
|
+
background-color: #dc6502 !important;
|
|
24987
|
+
}
|
|
24988
|
+
|
|
24989
|
+
.bg-yellow {
|
|
24990
|
+
background-color: #ffc107 !important;
|
|
24991
|
+
}
|
|
24992
|
+
|
|
24993
|
+
a.bg-yellow:hover, a.bg-yellow:focus,
|
|
24994
|
+
button.bg-yellow:hover,
|
|
24995
|
+
button.bg-yellow:focus {
|
|
24996
|
+
background-color: #d39e00 !important;
|
|
24997
|
+
}
|
|
24998
|
+
|
|
24999
|
+
.bg-green {
|
|
25000
|
+
background-color: #28a745 !important;
|
|
25001
|
+
}
|
|
25002
|
+
|
|
25003
|
+
a.bg-green:hover, a.bg-green:focus,
|
|
25004
|
+
button.bg-green:hover,
|
|
25005
|
+
button.bg-green:focus {
|
|
25006
|
+
background-color: #1e7e34 !important;
|
|
25007
|
+
}
|
|
25008
|
+
|
|
25009
|
+
.bg-teal {
|
|
25010
|
+
background-color: #20c997 !important;
|
|
25011
|
+
}
|
|
25012
|
+
|
|
25013
|
+
a.bg-teal:hover, a.bg-teal:focus,
|
|
25014
|
+
button.bg-teal:hover,
|
|
25015
|
+
button.bg-teal:focus {
|
|
25016
|
+
background-color: #199d76 !important;
|
|
25017
|
+
}
|
|
25018
|
+
|
|
25019
|
+
.bg-cyan {
|
|
25020
|
+
background-color: #17a2b8 !important;
|
|
25021
|
+
}
|
|
25022
|
+
|
|
25023
|
+
a.bg-cyan:hover, a.bg-cyan:focus,
|
|
25024
|
+
button.bg-cyan:hover,
|
|
25025
|
+
button.bg-cyan:focus {
|
|
25026
|
+
background-color: #117a8b !important;
|
|
25027
|
+
}
|
|
25028
|
+
|
|
24910
25029
|
.bg-primary {
|
|
24911
25030
|
background-color: #007bff !important;
|
|
24912
25031
|
}
|
|
@@ -29808,6 +29927,86 @@ button.bg-dark:focus {
|
|
|
29808
29927
|
color: #fff !important;
|
|
29809
29928
|
}
|
|
29810
29929
|
|
|
29930
|
+
.text-blue {
|
|
29931
|
+
color: #007bff !important;
|
|
29932
|
+
}
|
|
29933
|
+
|
|
29934
|
+
a.text-blue:hover, a.text-blue:focus {
|
|
29935
|
+
color: #0056b3 !important;
|
|
29936
|
+
}
|
|
29937
|
+
|
|
29938
|
+
.text-indigo {
|
|
29939
|
+
color: #6610f2 !important;
|
|
29940
|
+
}
|
|
29941
|
+
|
|
29942
|
+
a.text-indigo:hover, a.text-indigo:focus {
|
|
29943
|
+
color: #4709ac !important;
|
|
29944
|
+
}
|
|
29945
|
+
|
|
29946
|
+
.text-purple {
|
|
29947
|
+
color: #6f42c1 !important;
|
|
29948
|
+
}
|
|
29949
|
+
|
|
29950
|
+
a.text-purple:hover, a.text-purple:focus {
|
|
29951
|
+
color: #4e2d89 !important;
|
|
29952
|
+
}
|
|
29953
|
+
|
|
29954
|
+
.text-pink {
|
|
29955
|
+
color: #e83e8c !important;
|
|
29956
|
+
}
|
|
29957
|
+
|
|
29958
|
+
a.text-pink:hover, a.text-pink:focus {
|
|
29959
|
+
color: #c21766 !important;
|
|
29960
|
+
}
|
|
29961
|
+
|
|
29962
|
+
.text-red {
|
|
29963
|
+
color: #dc3545 !important;
|
|
29964
|
+
}
|
|
29965
|
+
|
|
29966
|
+
a.text-red:hover, a.text-red:focus {
|
|
29967
|
+
color: #a71d2a !important;
|
|
29968
|
+
}
|
|
29969
|
+
|
|
29970
|
+
.text-orange {
|
|
29971
|
+
color: #fd7e14 !important;
|
|
29972
|
+
}
|
|
29973
|
+
|
|
29974
|
+
a.text-orange:hover, a.text-orange:focus {
|
|
29975
|
+
color: #c35a02 !important;
|
|
29976
|
+
}
|
|
29977
|
+
|
|
29978
|
+
.text-yellow {
|
|
29979
|
+
color: #ffc107 !important;
|
|
29980
|
+
}
|
|
29981
|
+
|
|
29982
|
+
a.text-yellow:hover, a.text-yellow:focus {
|
|
29983
|
+
color: #ba8b00 !important;
|
|
29984
|
+
}
|
|
29985
|
+
|
|
29986
|
+
.text-green {
|
|
29987
|
+
color: #28a745 !important;
|
|
29988
|
+
}
|
|
29989
|
+
|
|
29990
|
+
a.text-green:hover, a.text-green:focus {
|
|
29991
|
+
color: #19692c !important;
|
|
29992
|
+
}
|
|
29993
|
+
|
|
29994
|
+
.text-teal {
|
|
29995
|
+
color: #20c997 !important;
|
|
29996
|
+
}
|
|
29997
|
+
|
|
29998
|
+
a.text-teal:hover, a.text-teal:focus {
|
|
29999
|
+
color: #158765 !important;
|
|
30000
|
+
}
|
|
30001
|
+
|
|
30002
|
+
.text-cyan {
|
|
30003
|
+
color: #17a2b8 !important;
|
|
30004
|
+
}
|
|
30005
|
+
|
|
30006
|
+
a.text-cyan:hover, a.text-cyan:focus {
|
|
30007
|
+
color: #0f6674 !important;
|
|
30008
|
+
}
|
|
30009
|
+
|
|
29811
30010
|
.text-primary {
|
|
29812
30011
|
color: #007bff !important;
|
|
29813
30012
|
}
|