summaryrefslogtreecommitdiff
path: root/virtManager/createpool.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2020-02-01 17:16:45 -0500
committerCole Robinson <crobinso@redhat.com>2020-02-03 07:05:11 -0500
commit67ef81895e925b8ec58e8b5f59e348baa12ce640 (patch)
treefc1a314b0281a05cf73c1d75e0506ee761bc09cc /virtManager/createpool.py
parent1ad470c021ddabf549a94ae21ec08e4c78c49797 (diff)
downloadvirt-manager-67ef81895e925b8ec58e8b5f59e348baa12ce640.tar.gz
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 <crobinso@redhat.com>
Diffstat (limited to 'virtManager/createpool.py')
-rw-r--r--virtManager/createpool.py4
1 files changed, 0 insertions, 4 deletions
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)