diff options
Diffstat (limited to 'Neutron-trunk/resources/css/polymer/scrollbars.css')
-rw-r--r-- | Neutron-trunk/resources/css/polymer/scrollbars.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Neutron-trunk/resources/css/polymer/scrollbars.css b/Neutron-trunk/resources/css/polymer/scrollbars.css new file mode 100644 index 0000000..522cfd5 --- /dev/null +++ b/Neutron-trunk/resources/css/polymer/scrollbars.css @@ -0,0 +1,24 @@ +::-webkit-scrollbar { + width: 10px; +} + +/* Track */ +::-webkit-scrollbar-track { + background-color: rgba(0, 0, 0, .25); +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background-color: rgba(0, 0, 0, 0.5); + border-radius: 999px; +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background-color: rgba(0, 0, 0, 0.7); +} + +/* Handle on hold */ +::-webkit-scrollbar-thumb:active { + background-color: rgb(0, 0, 0) !important; +}
\ No newline at end of file |