Skip to content

Commit 16b2e1d

Browse files
committed
Style - put visible border around autocomplete
* Also - move style definitions to end of file to ensure they override previous styles * Puts border around help selection box - perhaps consider removing this.
1 parent 12853e8 commit 16b2e1d

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

app/gui/qt/theme/app.qss

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,7 @@ Available Style Colours:
3434
- errorBackgroundColor
3535
*/
3636

37-
QListWidget
38-
{
39-
background: paneColor;
40-
}
41-
4237

43-
QListWidget::item
44-
{
45-
background: paneColor;
46-
color: menuTextColor;
47-
}
48-
49-
QListWidget::item::selected
50-
{
51-
background: menuSelectedColor;
52-
color: menuSelectedTextColor;
53-
}
5438

5539
QFrame {
5640
border: none;
@@ -310,10 +294,26 @@ QTextBrowser {
310294
}
311295

312296

313-
314-
315-
316297
QToolBar{
317298
background-color: windowColor;
318299
border-bottom: 1px solid windowBorderColor;
319300
}
301+
302+
303+
QListWidget
304+
{
305+
background: paneColor;
306+
border: 1px solid menuSelectedColor;
307+
}
308+
309+
QListWidget::item
310+
{
311+
background: paneColor;
312+
color: menuTextColor;
313+
}
314+
315+
QListWidget::item::selected
316+
{
317+
background: menuSelectedColor;
318+
color: menuSelectedTextColor;
319+
}

0 commit comments

Comments
 (0)