@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/cadmin.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>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.
|
|
19
|
+
* Clay 3.124.0
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -12215,6 +12215,145 @@ html:not(#__):not(#___) .cadmin .menubar {
|
|
|
12215
12215
|
html:not(#__):not(#___) .cadmin .menubar-toggler {
|
|
12216
12216
|
display: none;
|
|
12217
12217
|
}
|
|
12218
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-item {
|
|
12219
|
+
position: relative;
|
|
12220
|
+
}
|
|
12221
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link {
|
|
12222
|
+
border-radius: 0;
|
|
12223
|
+
color: #272833;
|
|
12224
|
+
line-height: 24px;
|
|
12225
|
+
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;
|
|
12226
|
+
}
|
|
12227
|
+
@media (prefers-reduced-motion: reduce) {
|
|
12228
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link {
|
|
12229
|
+
transition: none;
|
|
12230
|
+
}
|
|
12231
|
+
}
|
|
12232
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .menubar-primary .nav-link {
|
|
12233
|
+
transition: none;
|
|
12234
|
+
}
|
|
12235
|
+
|
|
12236
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link::before {
|
|
12237
|
+
bottom: 0;
|
|
12238
|
+
content: "";
|
|
12239
|
+
display: block;
|
|
12240
|
+
left: 0;
|
|
12241
|
+
position: absolute;
|
|
12242
|
+
top: 0;
|
|
12243
|
+
transition: all 0.2s ease-in-out;
|
|
12244
|
+
}
|
|
12245
|
+
@media (prefers-reduced-motion: reduce) {
|
|
12246
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link::before {
|
|
12247
|
+
transition: none;
|
|
12248
|
+
}
|
|
12249
|
+
}
|
|
12250
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .menubar-primary .nav-link::before {
|
|
12251
|
+
transition: none;
|
|
12252
|
+
}
|
|
12253
|
+
|
|
12254
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.hover {
|
|
12255
|
+
background-color: #f0f5ff;
|
|
12256
|
+
color: #272833;
|
|
12257
|
+
letter-spacing: 0;
|
|
12258
|
+
}
|
|
12259
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:hover::before, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.hover::before {
|
|
12260
|
+
background: #9b92a5;
|
|
12261
|
+
width: 2px;
|
|
12262
|
+
}
|
|
12263
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.focus, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:focus-visible,
|
|
12264
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .menubar-primary .nav-link {
|
|
12265
|
+
box-shadow: none;
|
|
12266
|
+
color: #272833;
|
|
12267
|
+
outline: 0;
|
|
12268
|
+
}
|
|
12269
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.focus::after, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:focus-visible::after,
|
|
12270
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .menubar-primary .nav-link::after {
|
|
12271
|
+
bottom: 0;
|
|
12272
|
+
box-shadow: inset 0 0 0 2px #5791ff, inset 0 0 0 4px #fff;
|
|
12273
|
+
content: "";
|
|
12274
|
+
display: block;
|
|
12275
|
+
left: 0;
|
|
12276
|
+
pointer-events: none;
|
|
12277
|
+
position: absolute;
|
|
12278
|
+
right: 0;
|
|
12279
|
+
top: 0;
|
|
12280
|
+
}
|
|
12281
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:active {
|
|
12282
|
+
color: #272833;
|
|
12283
|
+
}
|
|
12284
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.active {
|
|
12285
|
+
font-weight: 600;
|
|
12286
|
+
background-color: #f0f5ff;
|
|
12287
|
+
color: #272833;
|
|
12288
|
+
}
|
|
12289
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.active::before {
|
|
12290
|
+
background-color: #0b5fff;
|
|
12291
|
+
width: 6px;
|
|
12292
|
+
}
|
|
12293
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.active:focus-visible::before,
|
|
12294
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .menubar-primary .nav-link::before {
|
|
12295
|
+
display: none;
|
|
12296
|
+
}
|
|
12297
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.disabled {
|
|
12298
|
+
background-color: transparent;
|
|
12299
|
+
color: #a7a9bc;
|
|
12300
|
+
box-shadow: none;
|
|
12301
|
+
font-weight: 400;
|
|
12302
|
+
letter-spacing: 0.016rem;
|
|
12303
|
+
}
|
|
12304
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:disabled::before, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.disabled::before {
|
|
12305
|
+
content: none;
|
|
12306
|
+
}
|
|
12307
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link:disabled::after, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.disabled::after {
|
|
12308
|
+
content: none;
|
|
12309
|
+
}
|
|
12310
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.show {
|
|
12311
|
+
font-weight: 600;
|
|
12312
|
+
color: #272833;
|
|
12313
|
+
}
|
|
12314
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link[aria-expanded=true]::before, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.show::before {
|
|
12315
|
+
background-color: transparent;
|
|
12316
|
+
width: 0;
|
|
12317
|
+
}
|
|
12318
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link[aria-expanded=true]:hover::before, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.show:hover::before {
|
|
12319
|
+
background-color: #9b92a5;
|
|
12320
|
+
width: 2px;
|
|
12321
|
+
}
|
|
12322
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link[aria-expanded=true]:focus-visible::before,
|
|
12323
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .menubar-primary .nav-link::before, html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.show:focus-visible::before {
|
|
12324
|
+
display: none;
|
|
12325
|
+
}
|
|
12326
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.collapse-icon {
|
|
12327
|
+
font-size: 12px;
|
|
12328
|
+
font-weight: 600;
|
|
12329
|
+
text-transform: uppercase;
|
|
12330
|
+
}
|
|
12331
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.collapse-icon .collapse-icon-closed {
|
|
12332
|
+
top: calc(22px - 0.5em);
|
|
12333
|
+
}
|
|
12334
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link.collapse-icon .collapse-icon-open {
|
|
12335
|
+
top: calc(22px - 0.5em);
|
|
12336
|
+
}
|
|
12337
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link .autofit-row {
|
|
12338
|
+
align-items: center;
|
|
12339
|
+
margin-left: -4px;
|
|
12340
|
+
margin-right: -4px;
|
|
12341
|
+
}
|
|
12342
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav-link .autofit-row .autofit-col {
|
|
12343
|
+
padding-left: 4px;
|
|
12344
|
+
padding-right: 4px;
|
|
12345
|
+
}
|
|
12346
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .menubar-actions-1 {
|
|
12347
|
+
padding-right: 64px;
|
|
12348
|
+
}
|
|
12349
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .menubar-action {
|
|
12350
|
+
position: absolute;
|
|
12351
|
+
top: 10px;
|
|
12352
|
+
right: 32px;
|
|
12353
|
+
}
|
|
12354
|
+
html:not(#__):not(#___) .cadmin .menubar-primary .nav .nav .nav > li > .nav-link {
|
|
12355
|
+
margin-left: 16px;
|
|
12356
|
+
}
|
|
12218
12357
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md {
|
|
12219
12358
|
max-width: 250px;
|
|
12220
12359
|
}
|