@clayui/css 3.124.0 → 3.126.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 +101 -8
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +100 -7
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +142 -50
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/gallery.svg +7 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/gallery.svg +7 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +11 -1
- package/src/scss/cadmin/components/_multi-step-nav.scss +75 -8
- package/src/scss/cadmin/variables/_globals.scss +21 -11
- package/src/scss/cadmin/variables/_menubar.scss +0 -1
- package/src/scss/cadmin/variables/_multi-step-nav.scss +26 -0
- package/src/scss/cadmin/variables/_stickers.scss +110 -0
- package/src/scss/cadmin/variables/_toggle-switch.scss +2 -3
- package/src/scss/components/_multi-step-nav.scss +68 -8
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/variables/_globals.scss +10 -0
- package/src/scss/variables/_menubar.scss +0 -1
- package/src/scss/variables/_multi-step-nav.scss +26 -0
- package/src/scss/variables/_stickers.scss +110 -0
- package/src/scss/variables/_toggle-switch.scss +2 -3
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.126.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>
|
|
@@ -553,7 +553,7 @@ strong {
|
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
code {
|
|
556
|
-
color: #
|
|
556
|
+
color: #e60000;
|
|
557
557
|
font-size: 87.5%;
|
|
558
558
|
word-wrap: break-word;
|
|
559
559
|
}
|
|
@@ -5592,6 +5592,56 @@ input[type=button].btn-block {
|
|
|
5592
5592
|
background-color: #fff;
|
|
5593
5593
|
color: #272833;
|
|
5594
5594
|
}
|
|
5595
|
+
.sticker-outline-0 {
|
|
5596
|
+
background-color: #f1f2f5;
|
|
5597
|
+
border: 1px solid #272833;
|
|
5598
|
+
color: #272833;
|
|
5599
|
+
}
|
|
5600
|
+
.sticker-outline-1 {
|
|
5601
|
+
background-color: #f2e5ff;
|
|
5602
|
+
border: 1px solid #aa33ff;
|
|
5603
|
+
color: #aa33ff;
|
|
5604
|
+
}
|
|
5605
|
+
.sticker-outline-2 {
|
|
5606
|
+
background-color: #fff8e5;
|
|
5607
|
+
border: 1px solid #b38900;
|
|
5608
|
+
color: #b38900;
|
|
5609
|
+
}
|
|
5610
|
+
.sticker-outline-3 {
|
|
5611
|
+
background-color: #f1fce9;
|
|
5612
|
+
border: 1px solid #458613;
|
|
5613
|
+
color: #458613;
|
|
5614
|
+
}
|
|
5615
|
+
.sticker-outline-4 {
|
|
5616
|
+
background-color: #ffe5e5;
|
|
5617
|
+
border: 1px solid #e60000;
|
|
5618
|
+
color: #e60000;
|
|
5619
|
+
}
|
|
5620
|
+
.sticker-outline-5 {
|
|
5621
|
+
background-color: #fff0e5;
|
|
5622
|
+
border: 1px solid #cc4e00;
|
|
5623
|
+
color: #cc4e00;
|
|
5624
|
+
}
|
|
5625
|
+
.sticker-outline-6 {
|
|
5626
|
+
background-color: #eafbf8;
|
|
5627
|
+
border: 1px solid #1b7e6e;
|
|
5628
|
+
color: #1b7e6e;
|
|
5629
|
+
}
|
|
5630
|
+
.sticker-outline-7 {
|
|
5631
|
+
background-color: #e5f6ff;
|
|
5632
|
+
border: 1px solid #0077b3;
|
|
5633
|
+
color: #0077b3;
|
|
5634
|
+
}
|
|
5635
|
+
.sticker-outline-8 {
|
|
5636
|
+
background-color: #ffe5f4;
|
|
5637
|
+
border: 1px solid #e50082;
|
|
5638
|
+
color: #800048;
|
|
5639
|
+
}
|
|
5640
|
+
.sticker-outline-9 {
|
|
5641
|
+
background-color: #fff;
|
|
5642
|
+
border: 1px solid #393a4a;
|
|
5643
|
+
color: #393a4a;
|
|
5644
|
+
}
|
|
5595
5645
|
.sticker-circle {
|
|
5596
5646
|
border-radius: 5000px;
|
|
5597
5647
|
}
|
|
@@ -13299,6 +13349,9 @@ label.custom-control-label {
|
|
|
13299
13349
|
margin-bottom: 10px;
|
|
13300
13350
|
position: relative;
|
|
13301
13351
|
}
|
|
13352
|
+
.multi-step-item:last-child .multi-step-divider {
|
|
13353
|
+
display: none;
|
|
13354
|
+
}
|
|
13302
13355
|
.multi-step-item.active .multi-step-icon {
|
|
13303
13356
|
background-color: #0b5fff;
|
|
13304
13357
|
background-position: center;
|
|
@@ -13354,9 +13407,10 @@ label.custom-control-label {
|
|
|
13354
13407
|
cursor: not-allowed;
|
|
13355
13408
|
opacity: 1;
|
|
13356
13409
|
}
|
|
13357
|
-
.multi-step-item.disabled .multi-step-icon:focus {
|
|
13410
|
+
.multi-step-item.disabled .multi-step-icon.focus, .multi-step-item.disabled .multi-step-icon:focus-visible {
|
|
13358
13411
|
box-shadow: none;
|
|
13359
13412
|
}
|
|
13413
|
+
|
|
13360
13414
|
.multi-step-item.disabled .multi-step-indicator-label {
|
|
13361
13415
|
color: #a7a9bc;
|
|
13362
13416
|
}
|
|
@@ -13432,6 +13486,7 @@ label.custom-control-label {
|
|
|
13432
13486
|
padding-left: 0;
|
|
13433
13487
|
padding-right: 0;
|
|
13434
13488
|
padding-top: 0;
|
|
13489
|
+
position: relative;
|
|
13435
13490
|
transition: box-shadow 0.15s ease-in-out;
|
|
13436
13491
|
width: 2rem;
|
|
13437
13492
|
}
|
|
@@ -13449,13 +13504,14 @@ label.custom-control-label {
|
|
|
13449
13504
|
color: #6b6c7e;
|
|
13450
13505
|
text-decoration: none;
|
|
13451
13506
|
}
|
|
13452
|
-
.multi-step-icon:focus {
|
|
13507
|
+
.multi-step-icon.focus, .multi-step-icon:focus-visible {
|
|
13453
13508
|
background-color: #e7e7ed;
|
|
13454
13509
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13455
13510
|
color: #6b6c7e;
|
|
13456
13511
|
outline: 0;
|
|
13457
13512
|
text-decoration: none;
|
|
13458
13513
|
}
|
|
13514
|
+
|
|
13459
13515
|
.multi-step-icon[data-multi-step-icon]::before {
|
|
13460
13516
|
content: '\FEFF' attr(data-multi-step-icon);
|
|
13461
13517
|
height: 2rem;
|
|
@@ -13485,6 +13541,28 @@ label.custom-control-label {
|
|
|
13485
13541
|
width: 150px;
|
|
13486
13542
|
}
|
|
13487
13543
|
|
|
13544
|
+
.multi-step-nav-center {
|
|
13545
|
+
padding: 0;
|
|
13546
|
+
text-align: center;
|
|
13547
|
+
}
|
|
13548
|
+
.multi-step-nav-center .multi-step-item {
|
|
13549
|
+
flex-grow: 1;
|
|
13550
|
+
width: 75px;
|
|
13551
|
+
}
|
|
13552
|
+
.multi-step-nav-center .multi-step-divider {
|
|
13553
|
+
left: 50%;
|
|
13554
|
+
margin-left: 1rem;
|
|
13555
|
+
width: calc(100% - 2rem);
|
|
13556
|
+
}
|
|
13557
|
+
.multi-step-nav-center .multi-step-indicator {
|
|
13558
|
+
left: 50%;
|
|
13559
|
+
transform: translateX(-50%);
|
|
13560
|
+
}
|
|
13561
|
+
.multi-step-nav-center .multi-step-title {
|
|
13562
|
+
margin-left: 12.5%;
|
|
13563
|
+
max-width: 75%;
|
|
13564
|
+
}
|
|
13565
|
+
|
|
13488
13566
|
@media (max-width: 767.98px) {
|
|
13489
13567
|
.multi-step-nav-collapse-sm {
|
|
13490
13568
|
flex-wrap: nowrap;
|
|
@@ -13502,6 +13580,23 @@ label.custom-control-label {
|
|
|
13502
13580
|
max-width: none;
|
|
13503
13581
|
transform: none;
|
|
13504
13582
|
}
|
|
13583
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-item {
|
|
13584
|
+
flex-grow: 0;
|
|
13585
|
+
width: auto;
|
|
13586
|
+
}
|
|
13587
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-item-expand {
|
|
13588
|
+
flex-grow: 1;
|
|
13589
|
+
width: 75px;
|
|
13590
|
+
}
|
|
13591
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-divider {
|
|
13592
|
+
left: auto;
|
|
13593
|
+
margin-left: 2rem;
|
|
13594
|
+
width: auto;
|
|
13595
|
+
}
|
|
13596
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-indicator {
|
|
13597
|
+
left: auto;
|
|
13598
|
+
transform: none;
|
|
13599
|
+
}
|
|
13505
13600
|
.multi-step-nav-collapse-sm .active.multi-step-item {
|
|
13506
13601
|
position: static;
|
|
13507
13602
|
}
|
|
@@ -14066,7 +14161,6 @@ label.custom-control-label {
|
|
|
14066
14161
|
color: #a7a9bc;
|
|
14067
14162
|
box-shadow: none;
|
|
14068
14163
|
font-weight: 400;
|
|
14069
|
-
letter-spacing: 0.016rem;
|
|
14070
14164
|
}
|
|
14071
14165
|
.menubar-primary .nav-link:disabled::before, .menubar-primary .nav-link.disabled::before {
|
|
14072
14166
|
content: none;
|
|
@@ -23253,7 +23347,7 @@ td.table-focus {
|
|
|
23253
23347
|
margin-right: 0.5rem;
|
|
23254
23348
|
}
|
|
23255
23349
|
.toggle-switch-sm .simple-toggle-switch .toggle-switch-label, .simple-toggle-switch.toggle-switch-sm .toggle-switch-label {
|
|
23256
|
-
max-width: calc(100% -
|
|
23350
|
+
max-width: calc(100% - 34px);
|
|
23257
23351
|
}
|
|
23258
23352
|
.toggle-switch-sm .toggle-switch-check {
|
|
23259
23353
|
height: 16px;
|
|
@@ -23275,10 +23369,9 @@ td.table-focus {
|
|
|
23275
23369
|
}
|
|
23276
23370
|
.toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle {
|
|
23277
23371
|
min-width: 30px;
|
|
23278
|
-
max-width: 30px;
|
|
23279
23372
|
}
|
|
23280
23373
|
.toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
23281
|
-
margin-left:
|
|
23374
|
+
margin-left: 34px;
|
|
23282
23375
|
}
|
|
23283
23376
|
.toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
23284
23377
|
font-size: 0.5rem;
|