diff options
| author | CJBok <cjbok@ziggo.nl> | 2020-01-28 23:59:30 +0100 |
|---|---|---|
| committer | CJBok <cjbok@ziggo.nl> | 2020-01-28 23:59:30 +0100 |
| commit | 4bc4fdf5ff69e8a8eeb7e62635c50ea4c84eb952 (patch) | |
| tree | 1fe70c7485464f8e31af3a04a624af035c671fb7 /dist/qt_themes/default/style.qss | |
| parent | c457e47297c1ea9bd723907b11e402f9b9dd3796 (diff) | |
GUI: Togglable graphics settings buttons in status bar
Diffstat (limited to 'dist/qt_themes/default/style.qss')
| -rw-r--r-- | dist/qt_themes/default/style.qss | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dist/qt_themes/default/style.qss b/dist/qt_themes/default/style.qss new file mode 100644 index 000000000..6b5953e38 --- /dev/null +++ b/dist/qt_themes/default/style.qss @@ -0,0 +1,35 @@ +QPushButton#TogglableStatusBarButton { + color: #959595; + border: 1px solid transparent; + background-color: transparent; + padding: 0px 3px 0px 3px; + text-align: center; +} + +QPushButton#TogglableStatusBarButton:checked { + color: #000000; +} + +QPushButton#TogglableStatusBarButton:hover { + border: 1px solid #76797C; +} + +QPushButton#RendererStatusBarButton { + color: #656565; + border: 1px solid transparent; + background-color: transparent; + padding: 0px 3px 0px 3px; + text-align: center; +} + +QPushButton#RendererStatusBarButton:hover { + border: 1px solid #76797C; +} + +QPushButton#RendererStatusBarButton:checked { + color: #e85c00; +} + +QPushButton#RendererStatusBarButton:!checked{ + color: #0066ff; +} |
