Skip to content
Snippets Groups Projects
Commit 1bb65f40 authored by Jörg Schummer's avatar Jörg Schummer Committed by Kai Koehne
Browse files

QmlDesigner.ItemLibrary: included missing stylesheet parts

parent 90f9346a
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,18 @@ QLineEdit ...@@ -46,6 +46,18 @@ QLineEdit
selection-background-color: darkgray; selection-background-color: darkgray;
} }
QLineEdit#itemLibrarySearchInput {
color: black;
border: 2px solid #0F0F0F;
border-radius: 6px;
border-width: 1;
max-height: 20px;
min-height: 20px;
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #e0e0e0, stop: 1 #f0f0f0);
}
QTreeView { QTreeView {
color: white; color: white;
selection-color: white selection-color: white
...@@ -101,3 +113,30 @@ QTreeView::branch:has-siblings:!adjoins-item { ...@@ -101,3 +113,30 @@ QTreeView::branch:has-siblings:!adjoins-item {
selection-color: #404040; selection-color: #404040;
} }
QTabBar::tab {
border-image: none;
width: 11ex;
height: 22px;
margin: 0px 0 0px 0;
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #3c3c3c, stop: 1 #444444);
color: #EEEEEE;
}
QTabBar::tab:hover {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #3c3c3c, stop: 1 #666666);
}
QTabBar::tab:selected {
border: none; /* no border for a flat push button */
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #EFEFEF, stop: 1 #EEEEEE);
color: #3c3c3c;
}
QWidget#itemLibrarySearchInputFrame {
background-color: #eeeeee;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment