@clayui/css 3.111.0 → 3.112.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/CHANGELOG.md +19 -0
- package/lib/css/atlas.css +18 -27
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +7 -16
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +0 -0
- package/lib/css/cadmin.css +19 -27
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/braces.svg +7 -0
- package/lib/images/icons/brackets.svg +7 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/seo.svg +7 -0
- package/package.json +2 -2
- package/src/images/icons/braces.svg +7 -0
- package/src/images/icons/brackets.svg +7 -0
- package/src/images/icons/seo.svg +7 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +1 -3
- package/src/scss/atlas/variables/_tooltip.scss +1 -1
- package/src/scss/cadmin/components/_type.scss +16 -1
- package/src/scss/cadmin/variables/_globals.scss +26 -3
- package/src/scss/cadmin/variables/_tooltip.scss +1 -1
- package/src/scss/cadmin/variables/_type.scss +0 -2
- package/src/scss/components/_type.scss +16 -1
- package/src/scss/functions/_lx-icons-generated.scss +6 -0
- package/src/scss/mixins/_type.scss +4 -3
- package/src/scss/variables/_globals.scss +26 -3
- package/src/scss/variables/_type.scss +0 -2
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.112.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>
|
|
@@ -369,27 +369,18 @@ small,
|
|
|
369
369
|
mark,
|
|
370
370
|
.mark {
|
|
371
371
|
background-color: #fcf8e3;
|
|
372
|
-
box-decoration-break: clone;
|
|
373
|
-
box-shadow: -0.25em 0 0 #fcf8e3;
|
|
374
372
|
display: inline;
|
|
375
373
|
line-height: normal;
|
|
376
|
-
padding: 2px 0.25em 3px 0;
|
|
377
374
|
position: relative;
|
|
378
375
|
white-space: pre-wrap;
|
|
379
376
|
}
|
|
380
|
-
mark
|
|
381
|
-
.mark
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
position: absolute;
|
|
387
|
-
right: 100%;
|
|
388
|
-
top: 0;
|
|
389
|
-
width: 0.25em;
|
|
390
|
-
z-index: -1;
|
|
377
|
+
mark.clay-dark,
|
|
378
|
+
.clay-dark.mark,
|
|
379
|
+
.clay-dark mark,
|
|
380
|
+
.clay-dark .mark {
|
|
381
|
+
background-color: #828e9a;
|
|
382
|
+
color: #fff;
|
|
391
383
|
}
|
|
392
|
-
|
|
393
384
|
.list-unstyled {
|
|
394
385
|
list-style: none;
|
|
395
386
|
padding-left: 0;
|