From 67ef81895e925b8ec58e8b5f59e348baa12ce640 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sat, 1 Feb 2020 17:16:45 -0500 Subject: virtManager: Convert to CSS for most color usage * Add CSS data in config.py and install it * Strip out all hardcoded colors and use style class annotations * Fix colors to be more theme appropriate to fix dark theme look Signed-off-by: Cole Robinson --- virtManager/createpool.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'virtManager/createpool.py') diff --git a/virtManager/createpool.py b/virtManager/createpool.py index 635ad173..4cfa28dd 100644 --- a/virtManager/createpool.py +++ b/virtManager/createpool.py @@ -6,7 +6,6 @@ import os -from gi.repository import Gdk from gi.repository import Gtk from virtinst import log @@ -87,9 +86,6 @@ class vmmCreatePool(vmmGObjectUI): model.append([typ, "%s: %s" % (typ, desc)]) def _init_ui(self): - blue = Gdk.Color.parse("#0072A8")[1] - self.widget("header").modify_bg(Gtk.StateType.NORMAL, blue) - format_list = self.widget("pool-format") format_model = Gtk.ListStore(str, str) format_list.set_model(format_model) -- cgit v1.2.1