-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.qss
31 lines (23 loc) · 1.06 KB
/
style.qss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/********************************************************************************************
QT Stylesheet for the app. This file will be read every time an app dialog is created via
the show_dialog, show_modal or show_panel methods.
Certain keywords will be resolved, for example {{SG_HIGHLIGHT_COLOR}}.
For a full list of keywords, call the app.style_constants property at runtime.
For more info about QT stylesheets, please see http://doc.qt.io/qt-4.8/stylesheet.html
********************************************************************************************/
/* --------------------------------------------------------------------- */
/* Global styling */
/* --------------------------------------------------------------------- */
/* Use open sans font across the app if core supports it */
QWidget {
font-family: Open Sans;
font-style: Regular;
}
/* Need this to kick QT into 'style mode' for labels otherwise things are not formatted correctly */
QLabel {
margin-top: 1px;
}
/* thumbnail background */
#item_thumbnail {
background-color: #292929;
}