From e2f3aadb45e076560c1f2a6b1d2d3db3524eee8f Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Thu, 5 Jan 2023 18:09:16 +0100 Subject: [PATCH] added 'ValidatedLineEdit' to style --- openpype/style/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openpype/style/style.css b/openpype/style/style.css index a7a48cdb9d..c96239dbd5 100644 --- a/openpype/style/style.css +++ b/openpype/style/style.css @@ -1416,6 +1416,13 @@ CreateNextPageOverlay { } /* Globally used names */ +#ValidatedLineEdit[state="valid"], #ValidatedLineEdit[state="valid"]:focus, #ValidatedLineEdit[state="valid"]:hover { + border-color: {color:publisher:success}; +} +#ValidatedLineEdit[state="invalid"], #ValidatedLineEdit[state="invalid"]:focus, #ValidatedLineEdit[state="invalid"]:hover { + border-color: {color:publisher:error}; +} + #Separator { background: {color:bg-menu-separator}; }