From 5605297387e054692c1fdd93332642b6dc8c7cfe Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Thu, 31 Jan 2013 21:51:44 +0530 Subject: [PATCH 1/2] Adds webkit scrollbar to ownCloud --- core/css/styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/styles.css b/core/css/styles.css index 3c172d11df8..4ec6b01d844 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:5px; } ++::-webkit-scrollbar-track-piece { background-color:transparent; } ++::-webkit-scrollbar-thumb { background:rgba(50,50,50,.3); } + /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { From 0118606e098be05fc99ea40d2fa8e81ac5c2377a Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Fri, 1 Feb 2013 02:50:31 +0530 Subject: [PATCH 2/2] More Visible webkit Scrollbar, syntax error solved. --- core/css/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 4ec6b01d844..ad22a365c48 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -53,9 +53,9 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# #quota { cursor:default; } /* SCROLLING */ -::-webkit-scrollbar { width:5px; } -+::-webkit-scrollbar-track-piece { background-color:transparent; } -+::-webkit-scrollbar-thumb { background:rgba(50,50,50,.3); } +::-webkit-scrollbar { width:8px; } +::-webkit-scrollbar-track-piece { background-color:transparent; } +::-webkit-scrollbar-thumb { background:#ddd; } /* BUTTONS */