Skip to content

Commit

Permalink
Scrollbars: move CSS to a generally available position
Browse files Browse the repository at this point in the history
  • Loading branch information
boomshop committed Mar 5, 2021
1 parent bac995a commit a19fa83
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions styles/essentials.css
Original file line number Diff line number Diff line change
Expand Up @@ -820,23 +820,6 @@ body.aux-cursor-row-resize * {
contain: strict;
}

.aux-virtualtree > .aux-scrollbar {
position: absolute;
top: 0;
left: 0;
right: calc(-1 * var(--aux-scrollbar-size));
bottom: 0;
overflow-y: scroll;
contain: strict;
}
.aux-virtualtree > .aux-scrollbar > .aux-scroller {
display: block;
width: 100%;
overflow: hidden;
box-sizing: border-box;
position: relative;
}

/* VIRTUALTREEENTRY */

.aux-virtualtreeentry {
Expand Down Expand Up @@ -1203,6 +1186,25 @@ body.aux-cursor-row-resize * {
bottom: 0px;
}

/* SCROLLBAR */

.aux-scrollbar {
position: absolute;
top: 0;
left: 0;
right: calc(-1 * var(--aux-scrollbar-size));
bottom: 0;
overflow-y: scroll;
contain: strict;
}
.aux-scrollbar > .aux-scroller {
display: block;
width: 100%;
overflow: hidden;
box-sizing: border-box;
position: relative;
}

/* SELECT */

.aux-button.aux-select {
Expand Down

0 comments on commit a19fa83

Please sign in to comment.