From c6eb321f5403c8b50818d766f263515ea0e7a449 Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Tue, 8 Aug 2023 10:52:09 +0100 Subject: [PATCH] Improve Visibility for Urls and Expressions --- src/Gui/Stylesheets/Behave-dark.qss | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/src/Gui/Stylesheets/Behave-dark.qss b/src/Gui/Stylesheets/Behave-dark.qss index 9a2f12bf7a..2b2ffea1b1 100644 --- a/src/Gui/Stylesheets/Behave-dark.qss +++ b/src/Gui/Stylesheets/Behave-dark.qss @@ -132,6 +132,17 @@ QMdiArea { background-repeat: no-repeat; } +/*================================================================================================== +Style Links +==================================================================================================*/ +QLabel[haslink="true"] { + color: #8bd1ff; +} + +Gui--UrlLabel { + color: #8bd1ff; +} + /*================================================================================================== Sub windows @@ -2052,6 +2063,14 @@ QToolBar > QToolButton:checked { background-color: rgba(124,171,249,60); /* transparency for #7cabf9 color */ } +QToolBar > QToolButton:checked:disabled { + background-color: #b65555; + color: #b8aba0; + border-radius: 1.9px; + padding: 0px; + outline: none; +} + QToolBar > QToolButton:checked:hover { border: 1px solid #7cabf9; background-color: rgba(124,171,249,80); /* transparency for #7cabf9 color */ @@ -2336,7 +2355,7 @@ Gui--StatefulLabel[state="redundant_constraints"] { color : rgba(255,69,0,255); /* Orange red */ } Gui--StatefulLabel[state="partially_redundant_constraints"] { - color : rgba(65,105,225,255); /* Royal blue */ + color : rgba(89, 142, 240, 255); /* a bit darker than Cornflower blue */ } Gui--StatefulLabel[state="solver_failed"] { color : rgba(255,0,0,255); /* Red */ @@ -2347,6 +2366,7 @@ Gui--StatefulLabel[state="fully_constrained"] { font-weight: bold; } Gui--UrlLabel { - color : rgba(0,91,255,255); /* Deep sky blue */ + color : rgba(100, 149, 237, 255); /* Cornflower blue */ text-decoration : underline; } +