From 0c4e7c5fe32b4e6cf55b8eae8390ada758e61cb8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 12 May 2014 18:35:16 +0200 Subject: [PATCH] Fix class name in url stylesheet --- qutebrowser/widgets/_statusbar.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qutebrowser/widgets/_statusbar.py b/qutebrowser/widgets/_statusbar.py index 51d29ed64..aac420d8c 100644 --- a/qutebrowser/widgets/_statusbar.py +++ b/qutebrowser/widgets/_statusbar.py @@ -605,23 +605,23 @@ class _Url(TextBase): """ STYLESHEET = """ - QLabel#Url[urltype="normal"] {{ + QLabel#_Url[urltype="normal"] {{ {color[statusbar.url.fg]} }} - QLabel#Url[urltype="success"] {{ + QLabel#_Url[urltype="success"] {{ {color[statusbar.url.fg.success]} }} - QLabel#Url[urltype="error"] {{ + QLabel#_Url[urltype="error"] {{ {color[statusbar.url.fg.error]} }} - QLabel#Url[urltype="warn"] {{ + QLabel#_Url[urltype="warn"] {{ {color[statusbar.url.fg.warn]} }} - QLabel#Url[urltype="hover"] {{ + QLabel#_Url[urltype="hover"] {{ {color[statusbar.url.fg.hover]} }} """