-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.qss
27 lines (18 loc) · 817 Bytes
/
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
/********************************************************************************************
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
********************************************************************************************/
/* Example:
QListView, QTableView, QScrollArea {
border: 2px solid {{SG_HIGHLIGHT_COLOR}};
}
*/
/* Use open sans font across the app if core supports it */
QWidget {
font-family: Open Sans;
font-style: Regular;
font: 14px;
}