@clayui/css 3.115.0 → 3.115.2

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 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.115.2](https://github.com/liferay/clay/compare/v3.115.1...v3.115.2) (2024-05-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **@clayui/css:** LPD-26719 Cadmin checkboxes should have darker borders for accessibility ([ac48a01](https://github.com/liferay/clay/commit/ac48a01b711363986cc8ed95347bf2f9e9ce3b0e))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.115.1](https://github.com/liferay/clay/compare/v3.115.0...v3.115.1) (2024-05-21)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **@clayui/empty-state:** LPD-2278 Add flexbox property to prevent image to overlap text ([cb3285e](https://github.com/liferay/clay/commit/cb3285e22f26058114a29b3ed5a09ae3b0c1097e))
23
+
24
+
25
+
26
+
27
+
6
28
  # [3.115.0](https://github.com/liferay/clay/compare/v3.114.0...v3.115.0) (2024-05-16)
7
29
 
8
30
 
package/lib/css/atlas.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.115.0
3
+ * Clay 3.115.2
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>
@@ -4853,14 +4853,17 @@ input[type=button].btn-block {
4853
4853
  }
4854
4854
 
4855
4855
  .c-empty-state-animation {
4856
- display: block;
4856
+ align-items: center;
4857
+ display: flex;
4858
+ flex-direction: column;
4859
+ flex-shrink: 0;
4857
4860
  margin: 5rem auto 1.5rem;
4858
4861
  max-width: 340px;
4859
4862
  text-align: center;
4860
4863
  }
4861
4864
 
4862
4865
  .c-empty-state-image {
4863
- margin: 0 auto 2rem;
4866
+ margin-bottom: -0.5rem;
4864
4867
  max-width: 250px;
4865
4868
  width: 100%;
4866
4869
  overflow-wrap: break-word;
@@ -23449,6 +23452,7 @@ td.table-focus {
23449
23452
  background-color: transparent;
23450
23453
  }
23451
23454
  .treeview .component-icon {
23455
+ color: #6b6c7e;
23452
23456
  display: inline-block;
23453
23457
  font-size: 16px;
23454
23458
  height: auto;
@@ -23613,9 +23617,6 @@ td.table-focus {
23613
23617
  .treeview-light .component-expander {
23614
23618
  color: #6b6c7e;
23615
23619
  }
23616
- .treeview-light .component-expander:hover {
23617
- color: #0b5fff;
23618
- }
23619
23620
  .treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
23620
23621
  color: #6b6c7e;
23621
23622
  opacity: 0.5;
@@ -23627,21 +23628,34 @@ td.table-focus {
23627
23628
  color: #6b6c7e;
23628
23629
  }
23629
23630
  .treeview-light .treeview-link:hover, .treeview-light .treeview-link.hover {
23630
- background-color: #f7f8f9;
23631
- color: #272833;
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;
23632
23635
  }
23633
23636
  .treeview-light .treeview-link:active {
23634
- background-color: #f1f2f5;
23635
- color: #272833;
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;
23636
23643
  }
23637
23644
  .treeview-light .treeview-link.active {
23638
- background-color: #f1f2f5;
23639
- color: #272833;
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;
23640
23651
  }
23641
23652
  .treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
23642
23653
  background-color: transparent;
23643
23654
  color: rgba(107, 108, 126, 0.5);
23644
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
+ }
23645
23659
  .treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
23646
23660
  background-color: transparent;
23647
23661
  color: #6b6c7e;
@@ -23649,9 +23663,6 @@ td.table-focus {
23649
23663
  .treeview-dark .component-expander {
23650
23664
  color: #a7a9bc;
23651
23665
  }
23652
- .treeview-dark .component-expander:hover {
23653
- color: #80acff;
23654
- }
23655
23666
  .treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
23656
23667
  color: #a7a9bc;
23657
23668
  opacity: 0.5;
@@ -23660,16 +23671,34 @@ td.table-focus {
23660
23671
  color: #a7a9bc;
23661
23672
  }
23662
23673
  .treeview-dark .treeview-link:hover, .treeview-dark .treeview-link.hover {
23663
- background-color: rgba(255, 255, 255, 0.04);
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;
23664
23686
  }
23665
23687
  .treeview-dark .treeview-link.active {
23666
- background-color: rgba(255, 255, 255, 0.06);
23667
- color: #fff;
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;
23668
23694
  }
23669
23695
  .treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
23670
23696
  background-color: transparent;
23671
23697
  color: rgba(167, 169, 188, 0.5);
23672
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
+ }
23673
23702
  .treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
23674
23703
  background-color: transparent;
23675
23704
  color: #a7a9bc;