diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-01 10:26:23 -0800 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-01 10:26:23 -0800 |
commit | 48022f4525d5dc801d0c0a2feadf1cb9f519abe4 (patch) | |
tree | 5045af1588779e594b14085c526e515cbd55c867 | |
parent | 2488a495c620cf8a816c9ba8d1ec55d379fa069c (diff) | |
parent | 0118606e098be05fc99ea40d2fa8e81ac5c2377a (diff) | |
download | nextcloud-server-48022f4525d5dc801d0c0a2feadf1cb9f519abe4.tar.gz nextcloud-server-48022f4525d5dc801d0c0a2feadf1cb9f519abe4.zip |
Merge pull request #1395 from raghunayyar/webkit-scrollbar-534
Adds webkit scrollbar to ownCloud
-rw-r--r-- | core/css/styles.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index b36d96f3b75..e10a4c7fbe1 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -52,6 +52,11 @@ input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; } #quota { cursor:default; } +/* SCROLLING */ +::-webkit-scrollbar { width:8px; } +::-webkit-scrollbar-track-piece { background-color:transparent; } +::-webkit-scrollbar-thumb { background:#ddd; } + /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { |