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 +4 -4
- data/Gemfile.lock +1 -1
- data/app/assets/builds/avo/application.css +42 -0
- data/app/assets/builds/avo/application.js +83 -83
- data/app/assets/builds/avo/application.js.map +3 -3
- data/app/assets/stylesheets/css/sidebar.css +54 -0
- data/app/components/avo/index/resource_controls_component.rb +2 -2
- data/app/components/avo/keyboard_shortcuts_component.rb +4 -2
- data/app/components/avo/sidebar/link_component.html.erb +4 -22
- data/app/components/avo/sidebar/link_component.rb +25 -40
- data/app/javascript/js/global_hotkeys.js +20 -0
- data/app/views/layouts/avo/application.html.erb +7 -0
- data/lib/avo/version.rb +1 -1
- data/lib/tasks/avo_tasks.rake +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 594a52eeb31089a89bb1d453f2a0400921b4ea02bb4838ac8f507710404799d9
|
|
4
|
+
data.tar.gz: 2af844241c1661f13b19d6b7e66faf8c9c6027ff41385c1c4decb2cc3555d692
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52a5240edde338e7dfbc019b3fd232c35f92b400a36914aaf0c8a8a84b6f1134e316668c7ca772f41739455231f16cd152347b900829f4cf97382ab5f8580983
|
|
7
|
+
data.tar.gz: 780e6a097c479994b88273b1df76e2415eac0bbbeff6a9badfeaa3f6f07c114f30d1d7c3be3f244f1944b0851efc06efb0cd950c5726f6d1766abf458b3c3691
|
data/Gemfile.lock
CHANGED
|
@@ -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;
|