We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd14f1 commit d0891a7Copy full SHA for d0891a7
cola/themes.py
@@ -300,6 +300,15 @@ def style_sheet_flat(self):
300
color: %(button_text)s;
301
}
302
303
+ /* MainWindow separator */
304
+ QMainWindow::separator {
305
+ width: %(separator)spx;
306
+ height: %(separator)spx;
307
+ }
308
+ QMainWindow::separator:hover {
309
+ background: %(focus)s;
310
311
+
312
/* scroll bar */
313
QScrollBar {
314
background-color: %(field)s;
@@ -499,8 +508,8 @@ def style_sheet_flat(self):
499
508
grayed=grayed,
500
509
button_text=button_text,
501
510
field_text=field_text,
502
- focus=focus
503
- )
511
+ separator=defs.separator,
512
+ focus=focus)
504
513
505
514
506
515
def get_all_themes():
0 commit comments