@clayui/css 3.122.0 → 3.124.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 +187 -44
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +146 -3
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +141 -2
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/flags-de-AT.svg +12 -0
- package/lib/images/icons/flags-de-CH.svg +11 -0
- package/lib/images/icons/flags-fr-BE.svg +12 -0
- package/lib/images/icons/flags-fr-CH.svg +11 -0
- package/lib/images/icons/flags-it-CH.svg +11 -0
- package/lib/images/icons/flags-mk-MK.svg +19 -0
- package/lib/images/icons/flags-no-NO.svg +14 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/flags-de-AT.svg +12 -0
- package/src/images/icons/flags-de-CH.svg +11 -0
- package/src/images/icons/flags-fr-BE.svg +12 -0
- package/src/images/icons/flags-fr-CH.svg +11 -0
- package/src/images/icons/flags-it-CH.svg +11 -0
- package/src/images/icons/flags-mk-MK.svg +19 -0
- package/src/images/icons/flags-no-NO.svg +14 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +10 -10
- package/src/scss/cadmin/components/_menubar.scss +8 -0
- package/src/scss/cadmin/variables/_menubar.scss +123 -0
- package/src/scss/components/_icons.scss +2 -1
- package/src/scss/components/_menubar.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +14 -0
- package/src/scss/mixins/_links.scss +34 -0
- package/src/scss/mixins/_menubar.scss +12 -0
- package/src/scss/variables/_menubar.scss +123 -0
- package/src/scss/variables/_navs.scss +2 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.124.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: #e50082;
|
|
557
557
|
font-size: 87.5%;
|
|
558
558
|
word-wrap: break-word;
|
|
559
559
|
}
|
|
@@ -966,11 +966,13 @@ pre code {
|
|
|
966
966
|
}
|
|
967
967
|
|
|
968
968
|
a.collapse-icon,
|
|
969
|
-
button.collapse-icon
|
|
969
|
+
button.collapse-icon,
|
|
970
|
+
.collapse-icon[tabindex] {
|
|
970
971
|
padding-right: 2.28125rem;
|
|
971
972
|
}
|
|
972
973
|
a.collapse-icon .c-inner,
|
|
973
|
-
button.collapse-icon .c-inner
|
|
974
|
+
button.collapse-icon .c-inner,
|
|
975
|
+
.collapse-icon[tabindex] .c-inner {
|
|
974
976
|
margin-right: -2.28125rem;
|
|
975
977
|
}
|
|
976
978
|
|
|
@@ -13550,12 +13552,17 @@ label.custom-control-label {
|
|
|
13550
13552
|
}
|
|
13551
13553
|
|
|
13552
13554
|
.nav-link {
|
|
13555
|
+
cursor: pointer;
|
|
13553
13556
|
display: block;
|
|
13554
13557
|
padding-bottom: 0.625rem;
|
|
13555
13558
|
padding-left: 1rem;
|
|
13556
13559
|
padding-right: 1rem;
|
|
13557
13560
|
padding-top: 0.625rem;
|
|
13558
13561
|
position: relative;
|
|
13562
|
+
-ms-user-select: none;
|
|
13563
|
+
-moz-user-select: none;
|
|
13564
|
+
-webkit-user-select: none;
|
|
13565
|
+
user-select: none;
|
|
13559
13566
|
}
|
|
13560
13567
|
.nav-link:hover, .nav-link.hover {
|
|
13561
13568
|
text-decoration: none;
|
|
@@ -13978,6 +13985,142 @@ label.custom-control-label {
|
|
|
13978
13985
|
display: none;
|
|
13979
13986
|
}
|
|
13980
13987
|
|
|
13988
|
+
.menubar-primary .nav-item {
|
|
13989
|
+
position: relative;
|
|
13990
|
+
}
|
|
13991
|
+
.menubar-primary .nav-link {
|
|
13992
|
+
border-radius: 0;
|
|
13993
|
+
color: #272833;
|
|
13994
|
+
line-height: 24px;
|
|
13995
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
13996
|
+
}
|
|
13997
|
+
@media (prefers-reduced-motion: reduce) {
|
|
13998
|
+
.menubar-primary .nav-link {
|
|
13999
|
+
transition: none;
|
|
14000
|
+
}
|
|
14001
|
+
}
|
|
14002
|
+
.c-prefers-reduced-motion .menubar-primary .nav-link {
|
|
14003
|
+
transition: none;
|
|
14004
|
+
}
|
|
14005
|
+
|
|
14006
|
+
.menubar-primary .nav-link::before {
|
|
14007
|
+
bottom: 0;
|
|
14008
|
+
content: "";
|
|
14009
|
+
display: block;
|
|
14010
|
+
left: 0;
|
|
14011
|
+
position: absolute;
|
|
14012
|
+
top: 0;
|
|
14013
|
+
transition: all 0.2s ease-in-out;
|
|
14014
|
+
}
|
|
14015
|
+
@media (prefers-reduced-motion: reduce) {
|
|
14016
|
+
.menubar-primary .nav-link::before {
|
|
14017
|
+
transition: none;
|
|
14018
|
+
}
|
|
14019
|
+
}
|
|
14020
|
+
.c-prefers-reduced-motion .menubar-primary .nav-link::before {
|
|
14021
|
+
transition: none;
|
|
14022
|
+
}
|
|
14023
|
+
|
|
14024
|
+
.menubar-primary .nav-link:hover, .menubar-primary .nav-link.hover {
|
|
14025
|
+
background-color: #f0f5ff;
|
|
14026
|
+
color: #272833;
|
|
14027
|
+
letter-spacing: 0;
|
|
14028
|
+
}
|
|
14029
|
+
.menubar-primary .nav-link:hover::before, .menubar-primary .nav-link.hover::before {
|
|
14030
|
+
background: #9b92a5;
|
|
14031
|
+
width: 0.125rem;
|
|
14032
|
+
}
|
|
14033
|
+
.menubar-primary .nav-link.focus, .menubar-primary .nav-link:focus-visible, .c-prefers-focus .menubar-primary .nav-link:focus {
|
|
14034
|
+
box-shadow: none;
|
|
14035
|
+
color: #272833;
|
|
14036
|
+
outline: 0;
|
|
14037
|
+
}
|
|
14038
|
+
.menubar-primary .nav-link.focus::after, .menubar-primary .nav-link:focus-visible::after, .c-prefers-focus .menubar-primary .nav-link:focus::after {
|
|
14039
|
+
bottom: 0;
|
|
14040
|
+
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14041
|
+
content: "";
|
|
14042
|
+
display: block;
|
|
14043
|
+
left: 0;
|
|
14044
|
+
pointer-events: none;
|
|
14045
|
+
position: absolute;
|
|
14046
|
+
right: 0;
|
|
14047
|
+
top: 0;
|
|
14048
|
+
}
|
|
14049
|
+
.menubar-primary .nav-link:active {
|
|
14050
|
+
color: #272833;
|
|
14051
|
+
}
|
|
14052
|
+
.menubar-primary .nav-link.active {
|
|
14053
|
+
font-weight: 600;
|
|
14054
|
+
background-color: #f0f5ff;
|
|
14055
|
+
color: #272833;
|
|
14056
|
+
}
|
|
14057
|
+
.menubar-primary .nav-link.active::before {
|
|
14058
|
+
background-color: #0b5fff;
|
|
14059
|
+
width: 0.375rem;
|
|
14060
|
+
}
|
|
14061
|
+
.menubar-primary .nav-link.active:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link.active:focus::before {
|
|
14062
|
+
display: none;
|
|
14063
|
+
}
|
|
14064
|
+
.menubar-primary .nav-link:disabled, .menubar-primary .nav-link.disabled {
|
|
14065
|
+
background-color: transparent;
|
|
14066
|
+
color: #a7a9bc;
|
|
14067
|
+
box-shadow: none;
|
|
14068
|
+
font-weight: 400;
|
|
14069
|
+
letter-spacing: 0.016rem;
|
|
14070
|
+
}
|
|
14071
|
+
.menubar-primary .nav-link:disabled::before, .menubar-primary .nav-link.disabled::before {
|
|
14072
|
+
content: none;
|
|
14073
|
+
}
|
|
14074
|
+
.menubar-primary .nav-link:disabled::after, .menubar-primary .nav-link.disabled::after {
|
|
14075
|
+
content: none;
|
|
14076
|
+
}
|
|
14077
|
+
.menubar-primary .nav-link[aria-expanded=true], .menubar-primary .nav-link.show {
|
|
14078
|
+
font-weight: 600;
|
|
14079
|
+
color: #272833;
|
|
14080
|
+
}
|
|
14081
|
+
.menubar-primary .nav-link[aria-expanded=true]::before, .menubar-primary .nav-link.show::before {
|
|
14082
|
+
background-color: transparent;
|
|
14083
|
+
width: 0;
|
|
14084
|
+
}
|
|
14085
|
+
.menubar-primary .nav-link[aria-expanded=true]:hover::before, .menubar-primary .nav-link.show:hover::before {
|
|
14086
|
+
background-color: #9b92a5;
|
|
14087
|
+
width: 0.125rem;
|
|
14088
|
+
}
|
|
14089
|
+
.menubar-primary .nav-link[aria-expanded=true]:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link[aria-expanded=true]:focus::before, .menubar-primary .nav-link.show:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link.show:focus::before {
|
|
14090
|
+
display: none;
|
|
14091
|
+
}
|
|
14092
|
+
.menubar-primary .nav-link.collapse-icon {
|
|
14093
|
+
font-size: 0.75rem;
|
|
14094
|
+
font-weight: 600;
|
|
14095
|
+
text-transform: uppercase;
|
|
14096
|
+
}
|
|
14097
|
+
.menubar-primary .nav-link.collapse-icon .collapse-icon-closed {
|
|
14098
|
+
top: calc(22px - 0.5em);
|
|
14099
|
+
}
|
|
14100
|
+
.menubar-primary .nav-link.collapse-icon .collapse-icon-open {
|
|
14101
|
+
top: calc(22px - 0.5em);
|
|
14102
|
+
}
|
|
14103
|
+
.menubar-primary .nav-link .autofit-row {
|
|
14104
|
+
align-items: center;
|
|
14105
|
+
margin-left: -0.25rem;
|
|
14106
|
+
margin-right: -0.25rem;
|
|
14107
|
+
}
|
|
14108
|
+
.menubar-primary .nav-link .autofit-row .autofit-col {
|
|
14109
|
+
padding-left: 0.25rem;
|
|
14110
|
+
padding-right: 0.25rem;
|
|
14111
|
+
}
|
|
14112
|
+
.menubar-primary .menubar-actions-1 {
|
|
14113
|
+
padding-right: 4rem;
|
|
14114
|
+
}
|
|
14115
|
+
.menubar-primary .menubar-action {
|
|
14116
|
+
position: absolute;
|
|
14117
|
+
top: 0.625rem;
|
|
14118
|
+
right: 2rem;
|
|
14119
|
+
}
|
|
14120
|
+
.menubar-primary .nav .nav .nav > li > .nav-link {
|
|
14121
|
+
margin-left: 1rem;
|
|
14122
|
+
}
|
|
14123
|
+
|
|
13981
14124
|
.menubar-vertical-expand-md {
|
|
13982
14125
|
max-width: 15.625rem;
|
|
13983
14126
|
}
|
|
@@ -28427,103 +28570,103 @@ ul.autofit-row {
|
|
|
28427
28570
|
}
|
|
28428
28571
|
|
|
28429
28572
|
.bg-blue {
|
|
28430
|
-
background-color: #
|
|
28573
|
+
background-color: #006eff !important;
|
|
28431
28574
|
}
|
|
28432
28575
|
|
|
28433
28576
|
a.bg-blue:hover, a.bg-blue:focus,
|
|
28434
28577
|
button.bg-blue:hover,
|
|
28435
28578
|
button.bg-blue:focus {
|
|
28436
|
-
background-color: #
|
|
28579
|
+
background-color: #0058cc !important;
|
|
28437
28580
|
}
|
|
28438
28581
|
|
|
28439
28582
|
.bg-indigo {
|
|
28440
|
-
background-color: #
|
|
28583
|
+
background-color: #4d5fff !important;
|
|
28441
28584
|
}
|
|
28442
28585
|
|
|
28443
28586
|
a.bg-indigo:hover, a.bg-indigo:focus,
|
|
28444
28587
|
button.bg-indigo:hover,
|
|
28445
28588
|
button.bg-indigo:focus {
|
|
28446
|
-
background-color: #
|
|
28589
|
+
background-color: #1a31ff !important;
|
|
28447
28590
|
}
|
|
28448
28591
|
|
|
28449
28592
|
.bg-purple {
|
|
28450
|
-
background-color: #
|
|
28593
|
+
background-color: #aa33ff !important;
|
|
28451
28594
|
}
|
|
28452
28595
|
|
|
28453
28596
|
a.bg-purple:hover, a.bg-purple:focus,
|
|
28454
28597
|
button.bg-purple:hover,
|
|
28455
28598
|
button.bg-purple:focus {
|
|
28456
|
-
background-color: #
|
|
28599
|
+
background-color: #9500ff !important;
|
|
28457
28600
|
}
|
|
28458
28601
|
|
|
28459
28602
|
.bg-pink {
|
|
28460
|
-
background-color: #
|
|
28603
|
+
background-color: #e50082 !important;
|
|
28461
28604
|
}
|
|
28462
28605
|
|
|
28463
28606
|
a.bg-pink:hover, a.bg-pink:focus,
|
|
28464
28607
|
button.bg-pink:hover,
|
|
28465
28608
|
button.bg-pink:focus {
|
|
28466
|
-
background-color: #
|
|
28609
|
+
background-color: #b20065 !important;
|
|
28467
28610
|
}
|
|
28468
28611
|
|
|
28469
28612
|
.bg-red {
|
|
28470
|
-
background-color: #
|
|
28613
|
+
background-color: #e60000 !important;
|
|
28471
28614
|
}
|
|
28472
28615
|
|
|
28473
28616
|
a.bg-red:hover, a.bg-red:focus,
|
|
28474
28617
|
button.bg-red:hover,
|
|
28475
28618
|
button.bg-red:focus {
|
|
28476
|
-
background-color: #
|
|
28619
|
+
background-color: #b30000 !important;
|
|
28477
28620
|
}
|
|
28478
28621
|
|
|
28479
28622
|
.bg-orange {
|
|
28480
|
-
background-color: #
|
|
28623
|
+
background-color: #cc4e00 !important;
|
|
28481
28624
|
}
|
|
28482
28625
|
|
|
28483
28626
|
a.bg-orange:hover, a.bg-orange:focus,
|
|
28484
28627
|
button.bg-orange:hover,
|
|
28485
28628
|
button.bg-orange:focus {
|
|
28486
|
-
background-color: #
|
|
28629
|
+
background-color: #993b00 !important;
|
|
28487
28630
|
}
|
|
28488
28631
|
|
|
28489
28632
|
.bg-yellow {
|
|
28490
|
-
background-color: #
|
|
28633
|
+
background-color: #ffbb00 !important;
|
|
28491
28634
|
}
|
|
28492
28635
|
|
|
28493
28636
|
a.bg-yellow:hover, a.bg-yellow:focus,
|
|
28494
28637
|
button.bg-yellow:hover,
|
|
28495
28638
|
button.bg-yellow:focus {
|
|
28496
|
-
background-color: #
|
|
28639
|
+
background-color: #cc9600 !important;
|
|
28497
28640
|
}
|
|
28498
28641
|
|
|
28499
28642
|
.bg-green {
|
|
28500
|
-
background-color: #
|
|
28643
|
+
background-color: #458613 !important;
|
|
28501
28644
|
}
|
|
28502
28645
|
|
|
28503
28646
|
a.bg-green:hover, a.bg-green:focus,
|
|
28504
28647
|
button.bg-green:hover,
|
|
28505
28648
|
button.bg-green:focus {
|
|
28506
|
-
background-color: #
|
|
28649
|
+
background-color: #2e590d !important;
|
|
28507
28650
|
}
|
|
28508
28651
|
|
|
28509
28652
|
.bg-teal {
|
|
28510
|
-
background-color: #
|
|
28653
|
+
background-color: #1b7e6e !important;
|
|
28511
28654
|
}
|
|
28512
28655
|
|
|
28513
28656
|
a.bg-teal:hover, a.bg-teal:focus,
|
|
28514
28657
|
button.bg-teal:hover,
|
|
28515
28658
|
button.bg-teal:focus {
|
|
28516
|
-
background-color: #
|
|
28659
|
+
background-color: #125449 !important;
|
|
28517
28660
|
}
|
|
28518
28661
|
|
|
28519
28662
|
.bg-cyan {
|
|
28520
|
-
background-color: #
|
|
28663
|
+
background-color: #0077b3 !important;
|
|
28521
28664
|
}
|
|
28522
28665
|
|
|
28523
28666
|
a.bg-cyan:hover, a.bg-cyan:focus,
|
|
28524
28667
|
button.bg-cyan:hover,
|
|
28525
28668
|
button.bg-cyan:focus {
|
|
28526
|
-
background-color: #
|
|
28669
|
+
background-color: #005580 !important;
|
|
28527
28670
|
}
|
|
28528
28671
|
|
|
28529
28672
|
.bg-primary {
|
|
@@ -34180,83 +34323,83 @@ button.bg-dark:focus {
|
|
|
34180
34323
|
}
|
|
34181
34324
|
|
|
34182
34325
|
.text-blue {
|
|
34183
|
-
color: #
|
|
34326
|
+
color: #006eff !important;
|
|
34184
34327
|
}
|
|
34185
34328
|
|
|
34186
34329
|
a.text-blue:hover, a.text-blue:focus {
|
|
34187
|
-
color: #
|
|
34330
|
+
color: #004db3 !important;
|
|
34188
34331
|
}
|
|
34189
34332
|
|
|
34190
34333
|
.text-indigo {
|
|
34191
|
-
color: #
|
|
34334
|
+
color: #4d5fff !important;
|
|
34192
34335
|
}
|
|
34193
34336
|
|
|
34194
34337
|
a.text-indigo:hover, a.text-indigo:focus {
|
|
34195
|
-
color: #
|
|
34338
|
+
color: #011aff !important;
|
|
34196
34339
|
}
|
|
34197
34340
|
|
|
34198
34341
|
.text-purple {
|
|
34199
|
-
color: #
|
|
34342
|
+
color: #aa33ff !important;
|
|
34200
34343
|
}
|
|
34201
34344
|
|
|
34202
34345
|
a.text-purple:hover, a.text-purple:focus {
|
|
34203
|
-
color: #
|
|
34346
|
+
color: #8600e6 !important;
|
|
34204
34347
|
}
|
|
34205
34348
|
|
|
34206
34349
|
.text-pink {
|
|
34207
|
-
color: #
|
|
34350
|
+
color: #e50082 !important;
|
|
34208
34351
|
}
|
|
34209
34352
|
|
|
34210
34353
|
a.text-pink:hover, a.text-pink:focus {
|
|
34211
|
-
color: #
|
|
34354
|
+
color: #990057 !important;
|
|
34212
34355
|
}
|
|
34213
34356
|
|
|
34214
34357
|
.text-red {
|
|
34215
|
-
color: #
|
|
34358
|
+
color: #e60000 !important;
|
|
34216
34359
|
}
|
|
34217
34360
|
|
|
34218
34361
|
a.text-red:hover, a.text-red:focus {
|
|
34219
|
-
color: #
|
|
34362
|
+
color: #9a0000 !important;
|
|
34220
34363
|
}
|
|
34221
34364
|
|
|
34222
34365
|
.text-orange {
|
|
34223
|
-
color: #
|
|
34366
|
+
color: #cc4e00 !important;
|
|
34224
34367
|
}
|
|
34225
34368
|
|
|
34226
34369
|
a.text-orange:hover, a.text-orange:focus {
|
|
34227
|
-
color: #
|
|
34370
|
+
color: #803100 !important;
|
|
34228
34371
|
}
|
|
34229
34372
|
|
|
34230
34373
|
.text-yellow {
|
|
34231
|
-
color: #
|
|
34374
|
+
color: #ffbb00 !important;
|
|
34232
34375
|
}
|
|
34233
34376
|
|
|
34234
34377
|
a.text-yellow:hover, a.text-yellow:focus {
|
|
34235
|
-
color: #
|
|
34378
|
+
color: #b38300 !important;
|
|
34236
34379
|
}
|
|
34237
34380
|
|
|
34238
34381
|
.text-green {
|
|
34239
|
-
color: #
|
|
34382
|
+
color: #458613 !important;
|
|
34240
34383
|
}
|
|
34241
34384
|
|
|
34242
34385
|
a.text-green:hover, a.text-green:focus {
|
|
34243
|
-
color: #
|
|
34386
|
+
color: #23430a !important;
|
|
34244
34387
|
}
|
|
34245
34388
|
|
|
34246
34389
|
.text-teal {
|
|
34247
|
-
color: #
|
|
34390
|
+
color: #1b7e6e !important;
|
|
34248
34391
|
}
|
|
34249
34392
|
|
|
34250
34393
|
a.text-teal:hover, a.text-teal:focus {
|
|
34251
|
-
color: #
|
|
34394
|
+
color: #0e3f37 !important;
|
|
34252
34395
|
}
|
|
34253
34396
|
|
|
34254
34397
|
.text-cyan {
|
|
34255
|
-
color: #
|
|
34398
|
+
color: #0077b3 !important;
|
|
34256
34399
|
}
|
|
34257
34400
|
|
|
34258
34401
|
a.text-cyan:hover, a.text-cyan:focus {
|
|
34259
|
-
color: #
|
|
34402
|
+
color: #004467 !important;
|
|
34260
34403
|
}
|
|
34261
34404
|
|
|
34262
34405
|
.text-primary {
|