@clayui/css 3.115.1 → 3.116.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 +22 -0
- package/lib/css/atlas.css +46 -20
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +42 -16
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +59 -25
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_tables.scss +4 -4
- package/src/scss/cadmin/variables/_custom-forms.scss +1 -1
- package/src/scss/cadmin/variables/_tables.scss +4 -4
- package/src/scss/cadmin/variables/_treeview.scss +41 -19
- package/src/scss/variables/_treeview.scss +41 -19
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.116.0](https://github.com/liferay/clay/compare/v3.115.2...v3.116.0) (2024-06-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **@clayui/css:** LPD-27401 Refactor. Change display property to allow long words break into multiple lines ([3e0ed1d](https://github.com/liferay/clay/commit/3e0ed1df192e0c4b05950fcb958cbf7b8673f8f4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.115.2](https://github.com/liferay/clay/compare/v3.115.1...v3.115.2) (2024-05-24)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **@clayui/css:** LPD-26719 Cadmin checkboxes should have darker borders for accessibility ([ac48a01](https://github.com/liferay/clay/commit/ac48a01b711363986cc8ed95347bf2f9e9ce3b0e))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [3.115.1](https://github.com/liferay/clay/compare/v3.115.0...v3.115.1) (2024-05-21)
|
|
7
29
|
|
|
8
30
|
|
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.116.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>
|
|
@@ -21257,7 +21257,7 @@ td.table-focus {
|
|
|
21257
21257
|
.table-title a[href] {
|
|
21258
21258
|
color: #272833;
|
|
21259
21259
|
border-radius: 1px;
|
|
21260
|
-
display: inline-
|
|
21260
|
+
display: inline-block;
|
|
21261
21261
|
max-width: 100%;
|
|
21262
21262
|
transition: box-shadow 0.15s ease-in-out;
|
|
21263
21263
|
}
|
|
@@ -21287,7 +21287,7 @@ td.table-focus {
|
|
|
21287
21287
|
.table-link {
|
|
21288
21288
|
color: #272833;
|
|
21289
21289
|
border-radius: 1px;
|
|
21290
|
-
display: inline-
|
|
21290
|
+
display: inline-block;
|
|
21291
21291
|
max-width: 100%;
|
|
21292
21292
|
transition: box-shadow 0.15s ease-in-out;
|
|
21293
21293
|
}
|
|
@@ -21580,7 +21580,7 @@ td.table-focus {
|
|
|
21580
21580
|
.table-list-title a[href] {
|
|
21581
21581
|
color: #272833;
|
|
21582
21582
|
border-radius: 1px;
|
|
21583
|
-
display: inline-
|
|
21583
|
+
display: inline-block;
|
|
21584
21584
|
max-width: 100%;
|
|
21585
21585
|
transition: box-shadow 0.15s ease-in-out;
|
|
21586
21586
|
}
|
|
@@ -21610,7 +21610,7 @@ td.table-focus {
|
|
|
21610
21610
|
.table-list-link {
|
|
21611
21611
|
color: #272833;
|
|
21612
21612
|
border-radius: 1px;
|
|
21613
|
-
display: inline-
|
|
21613
|
+
display: inline-block;
|
|
21614
21614
|
max-width: 100%;
|
|
21615
21615
|
transition: box-shadow 0.15s ease-in-out;
|
|
21616
21616
|
}
|
|
@@ -23452,6 +23452,7 @@ td.table-focus {
|
|
|
23452
23452
|
background-color: transparent;
|
|
23453
23453
|
}
|
|
23454
23454
|
.treeview .component-icon {
|
|
23455
|
+
color: #6b6c7e;
|
|
23455
23456
|
display: inline-block;
|
|
23456
23457
|
font-size: 16px;
|
|
23457
23458
|
height: auto;
|
|
@@ -23616,9 +23617,6 @@ td.table-focus {
|
|
|
23616
23617
|
.treeview-light .component-expander {
|
|
23617
23618
|
color: #6b6c7e;
|
|
23618
23619
|
}
|
|
23619
|
-
.treeview-light .component-expander:hover {
|
|
23620
|
-
color: #0b5fff;
|
|
23621
|
-
}
|
|
23622
23620
|
.treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
|
|
23623
23621
|
color: #6b6c7e;
|
|
23624
23622
|
opacity: 0.5;
|
|
@@ -23630,21 +23628,34 @@ td.table-focus {
|
|
|
23630
23628
|
color: #6b6c7e;
|
|
23631
23629
|
}
|
|
23632
23630
|
.treeview-light .treeview-link:hover, .treeview-light .treeview-link.hover {
|
|
23633
|
-
|
|
23634
|
-
|
|
23631
|
+
box-shadow: inset 0 0 0 1px #88889a;
|
|
23632
|
+
}
|
|
23633
|
+
.treeview-light .treeview-link.focus, .treeview-light .treeview-link:focus-visible, .c-prefers-focus .treeview-light .treeview-link:focus {
|
|
23634
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23635
23635
|
}
|
|
23636
23636
|
.treeview-light .treeview-link:active {
|
|
23637
|
-
background-color: #
|
|
23638
|
-
|
|
23637
|
+
background-color: #f0f5ff;
|
|
23638
|
+
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
23639
|
+
color: #393a4a;
|
|
23640
|
+
}
|
|
23641
|
+
.treeview-light .treeview-link:active:focus-visible, .c-prefers-focus .treeview-light .treeview-link:active:focus {
|
|
23642
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23639
23643
|
}
|
|
23640
23644
|
.treeview-light .treeview-link.active {
|
|
23641
|
-
background-color: #
|
|
23642
|
-
|
|
23645
|
+
background-color: #f0f5ff;
|
|
23646
|
+
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
23647
|
+
color: #393a4a;
|
|
23648
|
+
}
|
|
23649
|
+
.treeview-light .treeview-link.active:focus-visible, .c-prefers-focus .treeview-light .treeview-link.active:focus {
|
|
23650
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23643
23651
|
}
|
|
23644
23652
|
.treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
|
|
23645
23653
|
background-color: transparent;
|
|
23646
23654
|
color: rgba(107, 108, 126, 0.5);
|
|
23647
23655
|
}
|
|
23656
|
+
.treeview-light .treeview-link[aria-expanded=true]:focus-visible, .c-prefers-focus .treeview-light .treeview-link[aria-expanded=true]:focus, .treeview-light .treeview-link.show:focus-visible, .c-prefers-focus .treeview-light .treeview-link.show:focus {
|
|
23657
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23658
|
+
}
|
|
23648
23659
|
.treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
|
|
23649
23660
|
background-color: transparent;
|
|
23650
23661
|
color: #6b6c7e;
|
|
@@ -23652,9 +23663,6 @@ td.table-focus {
|
|
|
23652
23663
|
.treeview-dark .component-expander {
|
|
23653
23664
|
color: #a7a9bc;
|
|
23654
23665
|
}
|
|
23655
|
-
.treeview-dark .component-expander:hover {
|
|
23656
|
-
color: #80acff;
|
|
23657
|
-
}
|
|
23658
23666
|
.treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
|
|
23659
23667
|
color: #a7a9bc;
|
|
23660
23668
|
opacity: 0.5;
|
|
@@ -23663,16 +23671,34 @@ td.table-focus {
|
|
|
23663
23671
|
color: #a7a9bc;
|
|
23664
23672
|
}
|
|
23665
23673
|
.treeview-dark .treeview-link:hover, .treeview-dark .treeview-link.hover {
|
|
23666
|
-
|
|
23674
|
+
box-shadow: inset 0 0 0 1px #88889a;
|
|
23675
|
+
}
|
|
23676
|
+
.treeview-dark .treeview-link.focus, .treeview-dark .treeview-link:focus-visible, .c-prefers-focus .treeview-dark .treeview-link:focus {
|
|
23677
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23678
|
+
}
|
|
23679
|
+
.treeview-dark .treeview-link:active {
|
|
23680
|
+
background-color: #393a4a;
|
|
23681
|
+
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
23682
|
+
color: #f0f5ff;
|
|
23683
|
+
}
|
|
23684
|
+
.treeview-dark .treeview-link:active:focus-visible, .c-prefers-focus .treeview-dark .treeview-link:active:focus {
|
|
23685
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23667
23686
|
}
|
|
23668
23687
|
.treeview-dark .treeview-link.active {
|
|
23669
|
-
background-color:
|
|
23670
|
-
|
|
23688
|
+
background-color: #393a4a;
|
|
23689
|
+
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
23690
|
+
color: #f0f5ff;
|
|
23691
|
+
}
|
|
23692
|
+
.treeview-dark .treeview-link.active:focus-visible, .c-prefers-focus .treeview-dark .treeview-link.active:focus {
|
|
23693
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23671
23694
|
}
|
|
23672
23695
|
.treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
|
|
23673
23696
|
background-color: transparent;
|
|
23674
23697
|
color: rgba(167, 169, 188, 0.5);
|
|
23675
23698
|
}
|
|
23699
|
+
.treeview-dark .treeview-link[aria-expanded=true]:focus-visible, .c-prefers-focus .treeview-dark .treeview-link[aria-expanded=true]:focus, .treeview-dark .treeview-link.show:focus-visible, .c-prefers-focus .treeview-dark .treeview-link.show:focus {
|
|
23700
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
23701
|
+
}
|
|
23676
23702
|
.treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
|
|
23677
23703
|
background-color: transparent;
|
|
23678
23704
|
color: #a7a9bc;
|