@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/atlas.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>
|
|
@@ -1702,18 +1702,32 @@ input[type=button].btn-block {
|
|
|
1702
1702
|
text-decoration: none;
|
|
1703
1703
|
}
|
|
1704
1704
|
.btn-beta {
|
|
1705
|
-
background-color:
|
|
1705
|
+
background-color: rgba(41, 79, 152, 0.04);
|
|
1706
1706
|
color: #294f98;
|
|
1707
1707
|
text-transform: uppercase;
|
|
1708
1708
|
}
|
|
1709
1709
|
.btn-beta:hover {
|
|
1710
|
-
background-color:
|
|
1710
|
+
background-color: rgba(41, 79, 152, 0.06);
|
|
1711
1711
|
color: #294f98;
|
|
1712
1712
|
}
|
|
1713
1713
|
.btn-beta:focus, .focus.btn-beta {
|
|
1714
|
-
background-color:
|
|
1714
|
+
background-color: rgba(41, 79, 152, 0.06);
|
|
1715
1715
|
color: #294f98;
|
|
1716
1716
|
}
|
|
1717
|
+
.btn-beta-dark {
|
|
1718
|
+
background-color: rgba(238, 242, 250, 0.04);
|
|
1719
|
+
border-color: transparent;
|
|
1720
|
+
color: #89a7e0;
|
|
1721
|
+
text-transform: uppercase;
|
|
1722
|
+
}
|
|
1723
|
+
.btn-beta-dark:hover {
|
|
1724
|
+
background-color: rgba(238, 242, 250, 0.06);
|
|
1725
|
+
color: #89a7e0;
|
|
1726
|
+
}
|
|
1727
|
+
.btn-beta-dark:focus, .focus.btn-beta-dark {
|
|
1728
|
+
background-color: rgba(238, 242, 250, 0.06);
|
|
1729
|
+
color: #89a7e0;
|
|
1730
|
+
}
|
|
1717
1731
|
.btn-outline-primary {
|
|
1718
1732
|
border-color: #0b5fff;
|
|
1719
1733
|
color: #0b5fff;
|
|
@@ -4282,10 +4296,15 @@ input[type=button].btn-block {
|
|
|
4282
4296
|
box-shadow: 0 0 0 0.2rem rgba(39, 40, 51, 0.5);
|
|
4283
4297
|
}
|
|
4284
4298
|
.badge-beta {
|
|
4285
|
-
background-color:
|
|
4299
|
+
background-color: rgba(41, 79, 152, 0.04);
|
|
4286
4300
|
color: #294f98;
|
|
4287
4301
|
text-transform: uppercase;
|
|
4288
4302
|
}
|
|
4303
|
+
.badge-beta-dark {
|
|
4304
|
+
background-color: rgba(238, 242, 250, 0.04);
|
|
4305
|
+
color: #89a7e0;
|
|
4306
|
+
text-transform: uppercase;
|
|
4307
|
+
}
|
|
4289
4308
|
.breadcrumb {
|
|
4290
4309
|
background-color: transparent;
|
|
4291
4310
|
border-radius: 0.25rem;
|