Atom editor scrollbar size/color -


i'm using atom develop in php me, have issue editor, use 1 dark theme try change color , size of right scrollbar of opened file because small , hard see me

i try info change atom-text-editor pane scrollbar colours

but don't see changes.

any ideas? thanks

update: below answer applies atom < 1.13. starting atom 1.13 shadow dom abondoned , example should work original poster had put (that without ::shadow selector.

for atom version 1.12: atom uses shadow dom editor, might reason not work you. style scrollbar both editor , tree view try this:

.tree-view-resizer, atom-text-editor::shadow  {   ::-webkit-scrollbar {     background-color: #262626;      &-track {}      &-thumb {       background-color: #404040;        &:window-inactive {         background-color: rgb(116, 115, 105);       }     }      &-corner {       background-color: #262626;     }   } } 

Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -