Skip to content
Snippets Groups Projects
Commit 1439df14 authored by Thomas Hackl's avatar Thomas Hackl Committed by David Siegfried
Browse files

Resolve "Blubber: Gelber Menüpfeil klebt rechts am Bildrand"

Closes #1962

Merge request studip/studip!1755
parent 7342a207
No related branches found
No related tags found
No related merge requests found
......@@ -574,7 +574,7 @@
border-top: 35px transparent solid;
border-bottom: 35px transparent solid;
border-left: 10px $content-color-40 solid;
right: -10px;
right: -2px;
margin-top: -10px;
}
&::after {
......@@ -585,7 +585,7 @@
border-top: 35px transparent solid;
border-bottom: 35px transparent solid;
border-left: 10px $yellow-40 solid;
right: -9px;
right: -1px;
margin-top: -70px;
}
}
......
......@@ -481,21 +481,6 @@ $sidebarOut: -330px;
}
}
.blubber_threads_widget {
.sidebar-widget-content {
ol {
li.active {
&::before {
right: 23px;
}
&::after {
right: 24px;
}
}
}
}
}
#toc {
max-width: 100vw;
position: absolute;
......
......@@ -63,8 +63,8 @@
// directive definition
inserted (el) {
let threads = el.__vue__;
$(el).parent().on('scroll', function (event) {
let top = $(el).parent().scrollTop();
$(el).parent().parent().on('scroll', function (event) {
let top = $(el).parent().parent().scrollTop();
let height = $(el).height();
$(el).toggleClass('scrolled', top > 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment