Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/WWBN/AVideo
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Jun 3, 2024
2 parents c2835ef + 4380601 commit e2c0b25
Showing 1 changed file with 39 additions and 10 deletions.
49 changes: 39 additions & 10 deletions view/css/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,44 @@ body.youtube.compressedMenu #leftMenuUser .leftMenuUserImg{
}

#sideBarContainer {
overflow: hidden;
position: absolute;
left: 0;
padding: 10px;
height: 100%;
width: 100%;
overflow-y: auto;
padding-right: 10px;
padding-right: 12px;
position: absolute;
left: 0;
height: 100%;
width: 100%;
padding: 10px;
padding-right: 12px;
overflow-y: scroll;
mask-image: linear-gradient(to top, transparent, black),
linear-gradient(to left, transparent 17px, black 17px);
mask-size: 100% 20000px;
mask-position: left bottom;
-webkit-mask-image: linear-gradient(to top, transparent, black),
linear-gradient(to left, transparent 17px, black 17px);
-webkit-mask-size: 100% 20000px;
-webkit-mask-position: left bottom;
transition: mask-position 0.3s, -webkit-mask-position 0.3s;
}
#sideBarContainer:hover {
-webkit-mask-position: left top;
}
#sideBarContainer {
/* Non-Standard, But More Styling-Capable Properties */
&::-webkit-scrollbar {
width: 8px;
height: 8px;
}
&::-webkit-scrollbar-thumb {
background: gray;
border-radius: 8px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
/* Standardized Properties */
@supports not selector(::-webkit-scrollbar) {
scrollbar-color: gray transparent;
scrollbar-width: thin;
}
}

/*
Expand Down Expand Up @@ -399,4 +428,4 @@ li.navsub-toggle a+ul {
body.youtube.compressedMenu {
margin-left: 100px;
}
}
}

0 comments on commit e2c0b25

Please sign in to comment.