mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05:00
Add a getPlatform method to the native object that is used for requiring the platform stylesheet from within window.coffee after the atom.css is required. This is used to provide non-native scrollbars on Linux for an improved look and feel.
13 lines
220 B
CSS
13 lines
220 B
CSS
::-webkit-scrollbar-corner {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
-webkit-border-radius: 2px;
|
|
background: rgba(150, 150, 150, .33);
|
|
} |