summaryrefslogtreecommitdiffstats
path: root/web-gui/hello-world/source/class/hello_world/theme/Font.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-gui/hello-world/source/class/hello_world/theme/Font.js')
-rw-r--r--web-gui/hello-world/source/class/hello_world/theme/Font.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/web-gui/hello-world/source/class/hello_world/theme/Font.js b/web-gui/hello-world/source/class/hello_world/theme/Font.js
index 957646d..a73b328 100644
--- a/web-gui/hello-world/source/class/hello_world/theme/Font.js
+++ b/web-gui/hello-world/source/class/hello_world/theme/Font.js
@@ -14,5 +14,15 @@ qx.Theme.define("hello_world.theme.Font",
fonts :
{
+ "default" :
+ {
+ size : (qx.bom.client.System.WINVISTA || qx.bom.client.System.WIN7) ? 17 : 15,
+ 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
+ }
}
-}); \ No newline at end of file
+});