From 63504a906e6c8237f739c76f98c518c6a6e8a57e Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Thu, 29 Apr 2021 18:29:21 +0200 Subject: [PATCH] change size and style colour --- igniter/install_dialog.py | 2 +- igniter/stylesheet.css | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/igniter/install_dialog.py b/igniter/install_dialog.py index 1b87b1de4a..d8a80d9fe4 100644 --- a/igniter/install_dialog.py +++ b/igniter/install_dialog.py @@ -193,7 +193,7 @@ class InstallDialog(QtWidgets.QDialog): mongo_url_regex = re.compile(r"(mongodb|mongodb\+srv)://.+") - _width = 300 + _width = 500 _height = 200 commands = collections.OrderedDict([ ("run", "Run"), diff --git a/igniter/stylesheet.css b/igniter/stylesheet.css index a39314fe98..70afb2bd8f 100644 --- a/igniter/stylesheet.css +++ b/igniter/stylesheet.css @@ -236,13 +236,13 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { #ExitBtn { /* `border` must be set to background of flat button is painted .*/ border: none; - color: rgb(64, 64, 64); - background-color: rgb(128, 128, 128); + color: rgb(39, 39, 39); + background-color: #828a97; padding: 0.5em; } #ExitBtn:hover{ - background-color: rgb(185, 185, 185); + background-color: #b2bece } #ExitBtn:disabled { background-color: rgba(185, 185, 185, 31); @@ -253,13 +253,13 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { border-top-right-radius: 0px; border-bottom-right-radius: 0px; border: none; - background-color: rgb(72, 200, 150); - color: rgb(64, 64, 64); + background-color: rgb(84, 209, 178); + color: rgb(39, 39, 39); font-weight: bold; padding: 0.5em; } #ButtonWithOptions QPushButton:hover{ - background-color: #2f9d73; + background-color: rgb(85, 224, 189) } #ButtonWithOptions QPushButton:disabled { background-color: rgba(72, 200, 150, 31); @@ -272,11 +272,11 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { border-bottom-left-radius: 0px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; - background-color: rgb(72, 200, 150); - color: rgb(64, 64, 64); + background-color: rgb(84, 209, 178); + color: rgb(39, 39, 39); } #ButtonWithOptions QToolButton:hover{ - background-color: #2f9d73; + background-color: rgb(85, 224, 189) } #ButtonWithOptions QToolButton:disabled { background-color: rgba(72, 200, 150, 31);