avo 4.0.0.beta.52 → 4.0.0.beta.54

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a80a9466d7b0e8fa431bb729d535aaaf7466f4e49a1f0a2c1734bb669ecb3b7c
4
- data.tar.gz: c198c4eb60da47e397324bf1f082e1ca02ff18c6d36ef9ea0e221cf25378bd0d
3
+ metadata.gz: 594a52eeb31089a89bb1d453f2a0400921b4ea02bb4838ac8f507710404799d9
4
+ data.tar.gz: 2af844241c1661f13b19d6b7e66faf8c9c6027ff41385c1c4decb2cc3555d692
5
5
  SHA512:
6
- metadata.gz: 8fe2b1e8a84d41183201c8f8bf25f96e7c9eb34be03ef75671964c68bb1737bdfa344784824a014a9d9302fdbd3fcf885d8b672e9981c652cd12f870825e843e
7
- data.tar.gz: ac88957e0b154b3b486ca3911aa9616d01a136eab7f6b66ae18eef7a0e8aafb5112cd9f4d55f34fc23e7550dc7339e5c10bd9607834ad5587c9dbe49f8842155
6
+ metadata.gz: 52a5240edde338e7dfbc019b3fd232c35f92b400a36914aaf0c8a8a84b6f1134e316668c7ca772f41739455231f16cd152347b900829f4cf97382ab5f8580983
7
+ data.tar.gz: 780e6a097c479994b88273b1df76e2415eac0bbbeff6a9badfeaa3f6f07c114f30d1d7c3be3f244f1944b0851efc06efb0cd950c5726f6d1766abf458b3c3691
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (4.0.0.beta.52)
4
+ avo (4.0.0.beta.54)
5
5
  actionview (>= 6.1)
6
6
  active_link_to
7
7
  activerecord (>= 6.1)
@@ -11647,6 +11647,48 @@ tag.tagify__tag {
11647
11647
  border-block-end: 2px solid var(--sidebar-link-active-background);
11648
11648
  border-end-start-radius: 2px;
11649
11649
  }
11650
+ .sidebar-subitem:hover, .sidebar-subitem:has(~ .sidebar-subitem:hover) {
11651
+ position: relative;
11652
+ }
11653
+ .sidebar-subitem:has(~ .sidebar-subitem:hover)::before {
11654
+ content: '';
11655
+ position: absolute;
11656
+ top: calc(var(--spacing) * 0);
11657
+ bottom: calc(var(--spacing) * 0);
11658
+ inset-inline-start: -10px;
11659
+ width: auto;
11660
+ height: auto;
11661
+ border-inline-start: 2px solid var(--sidebar-link-active-background);
11662
+ border-block-end: none;
11663
+ border-end-start-radius: 0;
11664
+ }
11665
+ .sidebar-subitem:hover::before {
11666
+ content: '';
11667
+ position: absolute;
11668
+ top: calc(var(--spacing) * 0);
11669
+ inset-inline-start: -10px;
11670
+ height: 50%;
11671
+ width: 10px;
11672
+ border-inline-start: 2px solid var(--sidebar-link-active-background);
11673
+ border-block-end: 2px solid var(--sidebar-link-active-background);
11674
+ border-end-start-radius: 2px;
11675
+ }
11676
+ .sidebar-subitem:hover:has(~ .sidebar-subitem--bar-active)::before {
11677
+ top: calc(var(--spacing) * 0);
11678
+ bottom: calc(var(--spacing) * 0);
11679
+ height: auto;
11680
+ width: auto;
11681
+ border-block-end: none;
11682
+ border-end-start-radius: 0;
11683
+ }
11684
+ .sidebar-subitem:hover:has(~ .sidebar-subitem--bar-active)::after {
11685
+ content: '';
11686
+ position: absolute;
11687
+ top: calc(50% - 1px);
11688
+ inset-inline-start: -10px;
11689
+ width: 10px;
11690
+ border-block-end: 2px solid var(--sidebar-link-active-background);
11691
+ }
11650
11692
  .sidebar-profile {
11651
11693
  display: flex;
11652
11694
  align-items: center;