From f763ec2664ae5621dbb06187e0f81d2541637419 Mon Sep 17 00:00:00 2001 From: shiin Date: Sun, 22 Apr 2012 20:50:09 +0200 Subject: [PATCH] work-around for invisible scrollbars in Chrome when usind webkit3d --- WebContent/main.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/WebContent/main.css b/WebContent/main.css index 4e369c82f..88d595d0f 100644 --- a/WebContent/main.css +++ b/WebContent/main.css @@ -220,6 +220,28 @@ html, body { } +/* workaround for invisible scrollbars in Chrome */ +#information-box::-webkit-scrollbar { + height: 10px; + width: 10px; +} +#information-box::-webkit-scrollbar-track { + background: #FFFFFF; +} +#information-box::-webkit-scrollbar-thumb { + min-height: 30px; + background: #EEEEEE; + border: 1px solid #999999; + -webkit-border-radius: 5ex; +} +#information-box::-webkit-scrollbar-thumb:hover { + background: #F9F9F9; +} +#information-box::-webkit-scrollbar-thumb:active { + background: #F4F4F4; +} + + /* styles for information-box-header */ .header-title {