From 0cefcef8f38867ad63408c12470f69feb37d18fe Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 15 Aug 2016 18:00:18 +0200 Subject: [PATCH] Change user-stylesheet default This shows scrollbars like the one in the code block here: https://devtalk.nvidia.com/default/topic/918822/linux/hevc-main-10-profile-decoding-using-vdpau-unsupported-on-gtx-950-361-28-/ --- qutebrowser/config/configdata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 805557e94..959e00dc7 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -314,7 +314,8 @@ def data(readonly=False): ('user-stylesheet', SettingValue(typ.UserStyleSheet(none_ok=True), - '::-webkit-scrollbar { width: 0px; height: 0px; }', + 'html > ::-webkit-scrollbar { width: 0px; ' + 'height: 0px; }', backends=[usertypes.Backend.QtWebKit]), "User stylesheet to use (absolute filename, filename relative to " "the config directory or CSS string). Will expand environment "