styled scrollbar
This commit is contained in:
parent
4520c8a120
commit
0d770bf612
18
editor.css
18
editor.css
@ -71,6 +71,7 @@ body {
|
|||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
left: 20px;
|
left: 20px;
|
||||||
right: 20px;
|
right: 20px;
|
||||||
|
padding-right: 10px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
@ -124,3 +125,20 @@ body {
|
|||||||
.contextmenu div:active {
|
.contextmenu div:active {
|
||||||
background-color: rgb(250, 250, 250);
|
background-color: rgb(250, 250, 250);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: rgba(120, 120, 120, 0.555);
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: rgb(120, 120, 120);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user