summaryrefslogtreecommitdiffstats
path: root/web-gui/live/source/class/live/theme/Font.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-gui/live/source/class/live/theme/Font.js')
-rw-r--r--web-gui/live/source/class/live/theme/Font.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/web-gui/live/source/class/live/theme/Font.js b/web-gui/live/source/class/live/theme/Font.js
new file mode 100644
index 0000000..7abc09e
--- /dev/null
+++ b/web-gui/live/source/class/live/theme/Font.js
@@ -0,0 +1,28 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("live.theme.Font",
+{
+ extend : qx.theme.modern.Font,
+
+ fonts :
+ {
+ "default" :
+ {
+ size : (qx.bom.client.System.WINVISTA || qx.bom.client.System.WIN7) ? 25 : 22,
+ lineHeight : 1.4,
+ family : qx.bom.client.Platform.MAC ? [ "Lucida Grande" ] :
+ (qx.bom.client.System.WINVISTA || qx.bom.client.System.WIN7) ?
+ [ "Segoe UI", "Candara" ] :
+ [ "Tahoma", "Liberation Sans", "Arial", "sans-serif" ],
+ bold : true
+ }
+ }
+});