Skip to content

Commit

Permalink
style: lighten button and list
Browse files Browse the repository at this point in the history
  • Loading branch information
scztt committed Mar 18, 2015
1 parent 5a79fa1 commit c294a76
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions editors/sc-ide/ide-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,22 @@ QDialog {
background-color: hsv(220, 5, 244);
}

QLineEdit, QComboBox, QSpinBox, QLis {
background-color: hsv(220, 5, 190);
QLineEdit, QComboBox, QSpinBox {
background-color: hsv(220, 5, 200);
}

QTreeView, QTreeWidget, QListView, QListWidget {
background-color: hsv(220, 5, 190);
background-color: hsv(220, 5, 220);
}

#toolbox, QTabWidget::pane, QTabBar {
#toolbox, QTabBar {
background-color: hsv(220, 5, 220);
}

QTabWidget::pane {
background-color: #ECEEF1; /* hsv(220, 5, 244); */
}

/* active */
QTabBar::tab::selected {
background-color: #ECEEF1; /* almost hsv(220, 5, 244) */
Expand Down Expand Up @@ -179,13 +183,13 @@ QToolButton {
}

QPushButton {
_background-color: rgb(200, 200, 200);
border: 1px solid rgba(0, 0, 0, 20);
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 rgb(200, 200, 200),
stop: 0.1 rgb(190, 190, 190),
stop: 0.9 rgb(190, 190, 190),
stop: 1 rgb(180, 180, 180));
stop:0 hsv(220, 5, 225),
stop: 0.1 hsv(220, 5, 220),
stop: 0.9 hsv(220, 5, 220),
stop: 1 hsv(220, 5, 215)
);
padding: 2px;
min-width: 80px;
}
Expand Down

0 comments on commit c294a76

Please sign in to comment.