diff --git a/src/blackgui/qss/stdwidget.qss b/src/blackgui/qss/stdwidget.qss index c7ea3e409..1775badfc 100644 --- a/src/blackgui/qss/stdwidget.qss +++ b/src/blackgui/qss/stdwidget.qss @@ -85,6 +85,32 @@ BlackGui--CInfoArea { background-image: url(:/textures/icons/textures/texture-inner.jpg); } +BlackGui--COverlayMessages { + background: black; /** background is background color here **/ + background-image: url(:/textures/icons/textures/texture-inner.jpg); + border: 2px solid yellow; + border-radius: 10px; +} + +/** +QTableView[isShowingLoadIndicator="true"] { + background-image: url(:/preloaders/icons/preloaders/FillingRing64.gif); + background-repeat: no-repeat; + background-position: center; +} +QTableView[isShowingLoadIndicator="false"] { + background-image: url(:/own/icons/own/transparent1px.png); + background-repeat: no-repeat; + background-position: center; +} +**/ + +/** Validator bar **/ +BlackGui--Editors--CValidationIndicator { + background: black; /** background is background color here **/ + background-image: url(:/textures/icons/textures/texture-inner.jpg); +} + /** default for buttons **/ QPushButton { /** background-image: url(:/textures/icons/textures/texture-inner.jpg); **/ @@ -158,6 +184,10 @@ QTabBar QToolButton { /* the scroll buttons are tool buttons */ border: 1px solid green; } +/* Splitter normally transparent +QSplitter { background-color: transparent; } +*/ + QSplitter::handle { background-color: rgba(0, 0, 255, 200); margin-top: 1px; @@ -311,6 +341,12 @@ QScrollArea { border-radius: 5px; } +/* have to set background on widget in scroll area, cannot set directly on scroll area */ +QScrollArea QWidget { + background: black; /** background is background color here **/ + background-image: url(:/textures/icons/textures/texture-inner.jpg); +} + QScrollBar:horizontal { border: 2px solid gray; background: slategray;