From 4e6dedb88109fae89f6541aae1369b9cf191b3c6 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 18 Aug 2021 18:06:03 +0200 Subject: [PATCH] added different styles for overlay window --- openpype/style/style.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/openpype/style/style.css b/openpype/style/style.css index bb826e879e..7675f7b147 100644 --- a/openpype/style/style.css +++ b/openpype/style/style.css @@ -666,11 +666,23 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { } #PublishOverlay { - background: rgb(194, 226, 236); + background: {color:bg}; border: 2px solid black; border-radius: 0.3em; } +#PublishOverlay[success="-1"] { + background: rgb(194, 226, 236); +} + +#PublishOverlay[success="1"] { + background: #458056 +} + +#PublishOverlay[success="0"] { + background: #AA5050 +} + #PublishOverlay QLabel { color: black; }