summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJörg Schummer <ext-jorg.2.schummer@nokia.com>2010-03-18 13:04:09 +0200
committerKai Koehne <kai.koehne@nokia.com>2010-03-18 14:57:52 +0100
commit1bb65f408ed671dce75e327e020f7d3a59c5184d (patch)
tree989403e09b10e6d18043a588ae3c0cd5b1986fc7 /src
parent90f9346ad3f0e0abf7a64e2bc3f1093911d12cab (diff)
downloadqt-creator-1bb65f408ed671dce75e327e020f7d3a59c5184d.tar.gz
QmlDesigner.ItemLibrary: included missing stylesheet parts
Diffstat (limited to 'src')
-rw-r--r--src/plugins/qmldesigner/components/resources/stylesheet.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/components/resources/stylesheet.css b/src/plugins/qmldesigner/components/resources/stylesheet.css
index fdff4e9add..b89d2525f5 100644
--- a/src/plugins/qmldesigner/components/resources/stylesheet.css
+++ b/src/plugins/qmldesigner/components/resources/stylesheet.css
@@ -46,6 +46,18 @@ QLineEdit
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 {
color: white;
selection-color: white
@@ -101,3 +113,30 @@ QTreeView::branch:has-siblings:!adjoins-item {
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;
+}
+