aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2014-08-20 21:46:54 +0200
committerVictor Häggqvist <[email protected]>2014-08-20 21:46:54 +0200
commit35219977c6a0da1fc43982ea45bfb9570b4a9c30 (patch)
tree714bcb013629b3369a0fc13548e1e0a1931ec68d
parent775711b4e3a547cabbae87bbe03c88b02a358f01 (diff)
Create qt-stylesheet.css
-rw-r--r--qt-stylesheet.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/qt-stylesheet.css b/qt-stylesheet.css
new file mode 100644
index 0000000..81aa600
--- /dev/null
+++ b/qt-stylesheet.css
@@ -0,0 +1,75 @@
+QMainWindow,
+QAbstractItemView,
+QTreeView::branch,
+QTabBar::tab{
+ color: #EAEAEA;
+ background: #333333;
+ font-size: 9pt;
+}
+
+QAbstractItemView::item:selected {
+ color: #EAEAEA;
+ background-color: #151515;
+}
+
+QScrollBar {
+ border: none;
+ background: #333333;
+ height: 6px;
+ width: 6px;
+ margin: 0px;
+}
+
+QScrollBar::handle{
+ background: #494949;
+ min-width: 10px;
+ min-height: 10px;
+}
+
+QScrollBar::add-line, QScrollBar::sub-line {
+ background: none;
+ border: none;
+}
+
+QScrollBar::add-page, QScrollBar::sub-page {
+ background: none;
+}
+
+QTreeView::branch:closed:adjoins-item:has-children {
+ background: solid #777777;
+ margin: 6px;
+ height: 6px;
+ width: 6px;
+ border-radius: 3px;
+}
+
+QTabBar::tab:selected {
+ font: bold;
+ border-color: #9B9B9B;
+ border-bottom-color: #C2C7CB;
+ }
+
+QTabBar::tab:!selected {
+ margin-top: 2px;
+ }
+
+QHeaderView::section {
+ background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
+ stop:0 #616161, stop: 0.5 #505050,
+ stop: 0.6 #434343, stop:1 #656565);
+ color: white;
+ padding-left: 4px;
+ border: 1px solid #6c6c6c;
+}
+
+QToolBar {
+ border-style: solid;
+ border-style: outset;
+ color: #EAEAEA;
+ background: #333333;
+ font-size: 9pt;
+}
+
+QPlainTextEdit {
+ background-color: #272822; /* This is the editor background */
+}