Reordered statusbar stylesheet to match configuration ordering.

This commit is contained in:
Austin Anderson 2015-05-11 22:28:12 -04:00
parent 1a2a57d59e
commit 14c1332017

View File

@ -110,6 +110,22 @@ class StatusBar(QWidget):
{{ color['statusbar.fg.command'] }}
}
QWidget#StatusBar[severity="error"] {
{{ color['statusbar.bg.error'] }}
}
QWidget#StatusBar[severity="error"] QLabel {
{{ color['statusbar.fg.error'] }}
}
QWidget#StatusBar[severity="warning"] {
{{ color['statusbar.bg.warning'] }}
}
QWidget#StatusBar[severity="warning"] QLabel {
{{ color['statusbar.fg.warning'] }}
}
QWidget#StatusBar[prompt_active="true"] {
{{ color['statusbar.bg.prompt'] }}
}
@ -134,22 +150,6 @@ class StatusBar(QWidget):
{{ color['statusbar.bg.command'] }}
}
QWidget#StatusBar[severity="error"] {
{{ color['statusbar.bg.error'] }}
}
QWidget#StatusBar[severity="error"] QLabel {
{{ color['statusbar.fg.error'] }}
}
QWidget#StatusBar[severity="warning"] {
{{ color['statusbar.bg.warning'] }}
}
QWidget#StatusBar[severity="warning"] QLabel {
{{ color['statusbar.fg.warning'] }}
}
QLabel, QLineEdit {
{{ font['statusbar'] }}
}