@clayui/css 3.99.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 +24 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +24 -5
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +2 -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/functions/_lx-icons-generated.scss +3 -3
- package/src/scss/variables/_badges.scss +6 -1
- package/src/scss/variables/_buttons.scss +17 -3
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;
|