Commit ad633afd authored by Phil Hughes's avatar Phil Hughes

transform the position

correctly position the arrow
fix scss lint
parent e35a56c5
...@@ -348,6 +348,9 @@ $(function () { ...@@ -348,6 +348,9 @@ $(function () {
$(document).trigger('init.scrolling-tabs'); $(document).trigger('init.scrolling-tabs');
const style = document.createElement("style");
document.head.appendChild(style);
$('.sidebar-top-level-items > li:not(.active)').on('mouseover', (e) => { $('.sidebar-top-level-items > li:not(.active)').on('mouseover', (e) => {
const windowHeight = window.innerHeight; const windowHeight = window.innerHeight;
const $this = e.currentTarget; const $this = e.currentTarget;
...@@ -355,13 +358,20 @@ $(function () { ...@@ -355,13 +358,20 @@ $(function () {
if ($subitems.length) { if ($subitems.length) {
const boundingRect = $this.getBoundingClientRect(); const boundingRect = $this.getBoundingClientRect();
const bottomOverflow = windowHeight - (boundingRect.top + $subitems.outerHeight()); const bottomOverflow = windowHeight - (boundingRect.top + $subitems.outerHeight());
const top = bottomOverflow < 0 ? boundingRect.top - Math.abs(bottomOverflow) : boundingRect.top; const top = bottomOverflow < 0 ? boundingRect.top - Math.abs(bottomOverflow) : boundingRect.top;
$subitems.css({ $subitems.css({
top, transform: `translate3d(0, ${top}px, 0)`,
}); });
style.sheet.insertRule(`.sidebar-sub-level-items::before { transform: translate3d(0, ${boundingRect.top - top}px, 0); }`, 0);
} }
}).on('mouseout', e => $('.sidebar-sub-level-items', e.currentTarget).hide()); }).on('mouseout', (e) => {
$('.sidebar-sub-level-items', e.currentTarget).hide();
if (style.sheet.rules.length) {
style.sheet.deleteRule(0);
}
});
}); });
...@@ -98,7 +98,6 @@ $new-sidebar-width: 220px; ...@@ -98,7 +98,6 @@ $new-sidebar-width: 220px;
} }
li { li {
position: relative;
white-space: nowrap; white-space: nowrap;
a { a {
...@@ -127,20 +126,6 @@ $new-sidebar-width: 220px; ...@@ -127,20 +126,6 @@ $new-sidebar-width: 220px;
padding-bottom: 8px; padding-bottom: 8px;
> li { > li {
&:not(.active) {
@media (min-width: $screen-sm-min) {
a {
padding: 11px 16px 11px 24px;
&:hover,
&:focus {
background: transparent;
font-weight: 600;
}
}
}
}
a { a {
padding: 8px 16px 8px 24px; padding: 8px 16px 8px 24px;
...@@ -170,13 +155,14 @@ $new-sidebar-width: 220px; ...@@ -170,13 +155,14 @@ $new-sidebar-width: 220px;
.sidebar-sub-level-items { .sidebar-sub-level-items {
@media (min-width: $screen-sm-min) { @media (min-width: $screen-sm-min) {
position: fixed; position: fixed;
top: 0;
left: 220px; left: 220px;
width: 150px; width: 150px;
margin-left: -1px; margin-left: -1px;
padding-bottom: 0; padding-bottom: 0;
background-color: #fff; background-color: $white-light;
box-shadow: 2px 1px 3px rgba(0,0,0,.1); box-shadow: 2px 1px 3px $dropdown-shadow-color;
border: 1px solid #e5e5e5; border: 1px solid $dropdown-border-color;
border-left: 0; border-left: 0;
&::before { &::before {
...@@ -189,6 +175,27 @@ $new-sidebar-width: 220px; ...@@ -189,6 +175,27 @@ $new-sidebar-width: 220px;
border-style: solid; border-style: solid;
border-width: 21px 12px; border-width: 21px 12px;
border-color: transparent transparent transparent $hover-background; border-color: transparent transparent transparent $hover-background;
pointer-events: none;
}
&::after {
content: "";
position: absolute;
top: 44px;
left: -20px;
right: 0;
bottom: 0;
z-index: -1;
}
a {
padding: 11px 16px 11px 24px;
&:hover,
&:focus {
background: transparent;
font-weight: 600;
}
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment