@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/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;
|
|
@@ -27302,6 +27321,106 @@ ul.autofit-row {
|
|
|
27302
27321
|
vertical-align: text-top !important;
|
|
27303
27322
|
}
|
|
27304
27323
|
|
|
27324
|
+
.bg-blue {
|
|
27325
|
+
background-color: #4b9fff !important;
|
|
27326
|
+
}
|
|
27327
|
+
|
|
27328
|
+
a.bg-blue:hover, a.bg-blue:focus,
|
|
27329
|
+
button.bg-blue:hover,
|
|
27330
|
+
button.bg-blue:focus {
|
|
27331
|
+
background-color: #1884ff !important;
|
|
27332
|
+
}
|
|
27333
|
+
|
|
27334
|
+
.bg-indigo {
|
|
27335
|
+
background-color: #7785ff !important;
|
|
27336
|
+
}
|
|
27337
|
+
|
|
27338
|
+
a.bg-indigo:hover, a.bg-indigo:focus,
|
|
27339
|
+
button.bg-indigo:hover,
|
|
27340
|
+
button.bg-indigo:focus {
|
|
27341
|
+
background-color: #4457ff !important;
|
|
27342
|
+
}
|
|
27343
|
+
|
|
27344
|
+
.bg-purple {
|
|
27345
|
+
background-color: #af78ff !important;
|
|
27346
|
+
}
|
|
27347
|
+
|
|
27348
|
+
a.bg-purple:hover, a.bg-purple:focus,
|
|
27349
|
+
button.bg-purple:hover,
|
|
27350
|
+
button.bg-purple:focus {
|
|
27351
|
+
background-color: #9145ff !important;
|
|
27352
|
+
}
|
|
27353
|
+
|
|
27354
|
+
.bg-pink {
|
|
27355
|
+
background-color: #ff73c3 !important;
|
|
27356
|
+
}
|
|
27357
|
+
|
|
27358
|
+
a.bg-pink:hover, a.bg-pink:focus,
|
|
27359
|
+
button.bg-pink:hover,
|
|
27360
|
+
button.bg-pink:focus {
|
|
27361
|
+
background-color: #ff40ad !important;
|
|
27362
|
+
}
|
|
27363
|
+
|
|
27364
|
+
.bg-red {
|
|
27365
|
+
background-color: #ff5f5f !important;
|
|
27366
|
+
}
|
|
27367
|
+
|
|
27368
|
+
a.bg-red:hover, a.bg-red:focus,
|
|
27369
|
+
button.bg-red:hover,
|
|
27370
|
+
button.bg-red:focus {
|
|
27371
|
+
background-color: #ff2c2c !important;
|
|
27372
|
+
}
|
|
27373
|
+
|
|
27374
|
+
.bg-orange {
|
|
27375
|
+
background-color: #ffb46e !important;
|
|
27376
|
+
}
|
|
27377
|
+
|
|
27378
|
+
a.bg-orange:hover, a.bg-orange:focus,
|
|
27379
|
+
button.bg-orange:hover,
|
|
27380
|
+
button.bg-orange:focus {
|
|
27381
|
+
background-color: #ff9a3b !important;
|
|
27382
|
+
}
|
|
27383
|
+
|
|
27384
|
+
.bg-yellow {
|
|
27385
|
+
background-color: #ffd76e !important;
|
|
27386
|
+
}
|
|
27387
|
+
|
|
27388
|
+
a.bg-yellow:hover, a.bg-yellow:focus,
|
|
27389
|
+
button.bg-yellow:hover,
|
|
27390
|
+
button.bg-yellow:focus {
|
|
27391
|
+
background-color: #ffc93b !important;
|
|
27392
|
+
}
|
|
27393
|
+
|
|
27394
|
+
.bg-green {
|
|
27395
|
+
background-color: #9be169 !important;
|
|
27396
|
+
}
|
|
27397
|
+
|
|
27398
|
+
a.bg-green:hover, a.bg-green:focus,
|
|
27399
|
+
button.bg-green:hover,
|
|
27400
|
+
button.bg-green:focus {
|
|
27401
|
+
background-color: #7fd93f !important;
|
|
27402
|
+
}
|
|
27403
|
+
|
|
27404
|
+
.bg-teal {
|
|
27405
|
+
background-color: #50d2a0 !important;
|
|
27406
|
+
}
|
|
27407
|
+
|
|
27408
|
+
a.bg-teal:hover, a.bg-teal:focus,
|
|
27409
|
+
button.bg-teal:hover,
|
|
27410
|
+
button.bg-teal:focus {
|
|
27411
|
+
background-color: #31be88 !important;
|
|
27412
|
+
}
|
|
27413
|
+
|
|
27414
|
+
.bg-cyan {
|
|
27415
|
+
background-color: #5fc8ff !important;
|
|
27416
|
+
}
|
|
27417
|
+
|
|
27418
|
+
a.bg-cyan:hover, a.bg-cyan:focus,
|
|
27419
|
+
button.bg-cyan:hover,
|
|
27420
|
+
button.bg-cyan:focus {
|
|
27421
|
+
background-color: #2cb6ff !important;
|
|
27422
|
+
}
|
|
27423
|
+
|
|
27305
27424
|
.bg-primary {
|
|
27306
27425
|
background-color: #0b5fff !important;
|
|
27307
27426
|
}
|
|
@@ -32955,6 +33074,86 @@ button.bg-dark:focus {
|
|
|
32955
33074
|
color: #fff !important;
|
|
32956
33075
|
}
|
|
32957
33076
|
|
|
33077
|
+
.text-blue {
|
|
33078
|
+
color: #4b9fff !important;
|
|
33079
|
+
}
|
|
33080
|
+
|
|
33081
|
+
a.text-blue:hover, a.text-blue:focus {
|
|
33082
|
+
color: #0076fe !important;
|
|
33083
|
+
}
|
|
33084
|
+
|
|
33085
|
+
.text-indigo {
|
|
33086
|
+
color: #7785ff !important;
|
|
33087
|
+
}
|
|
33088
|
+
|
|
33089
|
+
a.text-indigo:hover, a.text-indigo:focus {
|
|
33090
|
+
color: #2b40ff !important;
|
|
33091
|
+
}
|
|
33092
|
+
|
|
33093
|
+
.text-purple {
|
|
33094
|
+
color: #af78ff !important;
|
|
33095
|
+
}
|
|
33096
|
+
|
|
33097
|
+
a.text-purple:hover, a.text-purple:focus {
|
|
33098
|
+
color: #822cff !important;
|
|
33099
|
+
}
|
|
33100
|
+
|
|
33101
|
+
.text-pink {
|
|
33102
|
+
color: #ff73c3 !important;
|
|
33103
|
+
}
|
|
33104
|
+
|
|
33105
|
+
a.text-pink:hover, a.text-pink:focus {
|
|
33106
|
+
color: #ff27a2 !important;
|
|
33107
|
+
}
|
|
33108
|
+
|
|
33109
|
+
.text-red {
|
|
33110
|
+
color: #ff5f5f !important;
|
|
33111
|
+
}
|
|
33112
|
+
|
|
33113
|
+
a.text-red:hover, a.text-red:focus {
|
|
33114
|
+
color: #ff1313 !important;
|
|
33115
|
+
}
|
|
33116
|
+
|
|
33117
|
+
.text-orange {
|
|
33118
|
+
color: #ffb46e !important;
|
|
33119
|
+
}
|
|
33120
|
+
|
|
33121
|
+
a.text-orange:hover, a.text-orange:focus {
|
|
33122
|
+
color: #ff8c22 !important;
|
|
33123
|
+
}
|
|
33124
|
+
|
|
33125
|
+
.text-yellow {
|
|
33126
|
+
color: #ffd76e !important;
|
|
33127
|
+
}
|
|
33128
|
+
|
|
33129
|
+
a.text-yellow:hover, a.text-yellow:focus {
|
|
33130
|
+
color: #ffc222 !important;
|
|
33131
|
+
}
|
|
33132
|
+
|
|
33133
|
+
.text-green {
|
|
33134
|
+
color: #9be169 !important;
|
|
33135
|
+
}
|
|
33136
|
+
|
|
33137
|
+
a.text-green:hover, a.text-green:focus {
|
|
33138
|
+
color: #71d32a !important;
|
|
33139
|
+
}
|
|
33140
|
+
|
|
33141
|
+
.text-teal {
|
|
33142
|
+
color: #50d2a0 !important;
|
|
33143
|
+
}
|
|
33144
|
+
|
|
33145
|
+
a.text-teal:hover, a.text-teal:focus {
|
|
33146
|
+
color: #2caa79 !important;
|
|
33147
|
+
}
|
|
33148
|
+
|
|
33149
|
+
.text-cyan {
|
|
33150
|
+
color: #5fc8ff !important;
|
|
33151
|
+
}
|
|
33152
|
+
|
|
33153
|
+
a.text-cyan:hover, a.text-cyan:focus {
|
|
33154
|
+
color: #13aeff !important;
|
|
33155
|
+
}
|
|
33156
|
+
|
|
32958
33157
|
.text-primary {
|
|
32959
33158
|
color: #0b5fff !important;
|
|
32960
33159
|
}
|