mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 19:02:29 +03:00
52 lines
999 B
SCSS
52 lines
999 B
SCSS
|
.nano {
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.nano > .nano-content {
|
||
|
position: absolute;
|
||
|
overflow: scroll;
|
||
|
overflow-x: hidden;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
.nano > .nano-content:focus {
|
||
|
outline: thin dotted;
|
||
|
}
|
||
|
.nano > .nano-content::-webkit-scrollbar {
|
||
|
display: none;
|
||
|
}
|
||
|
.has-scrollbar > .nano-content::-webkit-scrollbar {
|
||
|
display: block;
|
||
|
}
|
||
|
.nano > .nano-pane {
|
||
|
background: transparent;
|
||
|
position: absolute;
|
||
|
width: 6px;
|
||
|
right: 2px;
|
||
|
top: 2px;
|
||
|
bottom: 2px;
|
||
|
opacity: 0;
|
||
|
transition: 0.35s;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
.nano > .nano-pane > .nano-slider {
|
||
|
background: #444;
|
||
|
background: rgba(0,0,0,0.35);
|
||
|
position: relative;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
.nano.nanoShowScrollBar > .nano-pane,
|
||
|
.nano-pane.active,
|
||
|
.nano-pane.flashed {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
.nano > .nano-pane:hover {
|
||
|
width: 10px;
|
||
|
background: rgba(0, 0, 0, .15);
|
||
|
opacity: 1;
|
||
|
transition: 0.15s;
|
||
|
}
|