aboutsummaryrefslogtreecommitdiff
path: root/libLumina/themes
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-11-10 10:44:00 -0500
committerKen Moore <ken@pcbsd.org>2014-11-10 10:44:00 -0500
commit0247592ea09d5c6b1ddf8259adeaf37e14508769 (patch)
tree9ca2cea8a9bb8fa5b5b62121d038da74ee221dc0 /libLumina/themes
parentStreamline the file manager quite a bit by putting the long-lived checks in a... (diff)
downloadlumina-0247592ea09d5c6b1ddf8259adeaf37e14508769.tar.gz
lumina-0247592ea09d5c6b1ddf8259adeaf37e14508769.tar.bz2
lumina-0247592ea09d5c6b1ddf8259adeaf37e14508769.zip
Add a new Lumina Theme: None
This disables all the special Qt theming (except for the custom font/font size), and will use the default theme for Qt.
Diffstat (limited to 'libLumina/themes')
-rw-r--r--libLumina/themes/None.qss.template5
1 files changed, 5 insertions, 0 deletions
diff --git a/libLumina/themes/None.qss.template b/libLumina/themes/None.qss.template
new file mode 100644
index 00000000..f9e4860f
--- /dev/null
+++ b/libLumina/themes/None.qss.template
@@ -0,0 +1,5 @@
+/* This is a blank stylesheet to disable the Lumina Themes entirely (except for font settings)*/
+QWidget{
+ font-family: %%FONT%%;
+ font-size: %%FONTSIZE%%;
+}
bgstack15