Theme: fix css to use theme colors

Change-Id: I82c278696e72d0a1ed08afef0e161fd83be0206f
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Brook Cronin
2020-04-16 17:26:30 +02:00
parent cc04c8d8e4
commit ae5466f3b1
2 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ QHeaderView::section {
background-color: #494949; background-color: #494949;
padding: 4px; padding: 4px;
border: 1px solid black; border: 1px solid black;
color: #cacaca; color: creatorTheme.DStextColor;
margin: 2px margin: 2px
} }
@@ -54,7 +54,7 @@ QWidget#widgetSpacer {
QStackedWidget { QStackedWidget {
border: 0px; border: 0px;
background-color: #4f4f4f; background-color: creatorTheme.QmlDesigner_TabLight;
} }
QTabBar::tab:selected { QTabBar::tab:selected {

View File

@@ -51,12 +51,12 @@ QLineEdit#itemLibrarySearchInput
QComboBox QAbstractItemView { QComboBox QAbstractItemView {
show-decoration-selected: 1; /* make the selection span the entire width of the view */ show-decoration-selected: 1; /* make the selection span the entire width of the view */
background-color: #494949; /* sets background of the menu */ background-color: creatorTheme.DSpanelBackground; /* sets background of the menu */
border: 1px solid black; border: 1px solid black;
margin: 0px; /* some spacing around the menu */ margin: 0px; /* some spacing around the menu */
color: #cacaca; color: creatorTheme.DStextColor;
selection-background-color: #d2d2d2; selection-background-color: creatorTheme.DSinteraction;
selection-color: #404040; selection-color: creatorTheme.DStextSelectedTextColor;
} }
QTabWidget { QTabWidget {