diff options
author | Eric Guzman | 2012-03-21 12:26:45 -0700 |
---|---|---|
committer | Eric Guzman | 2012-03-21 12:26:45 -0700 |
commit | 0a601adc97f58673c2a720ee61f4c7d7e7bfb68f (patch) | |
tree | 38d7e54519c8a2fb0840e87a43320c3015dfa918 /js/panels/presets | |
parent | 31eee2972667d7553974f0857fdc458954219203 (diff) | |
download | ninja-0a601adc97f58673c2a720ee61f4c7d7e7bfb68f.tar.gz |
Presets Panel - Add Font style preset
Diffstat (limited to 'js/panels/presets')
-rw-r--r-- | js/panels/presets/default-style-presets.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/js/panels/presets/default-style-presets.js b/js/panels/presets/default-style-presets.js index 3677d976..82bec34f 100644 --- a/js/panels/presets/default-style-presets.js +++ b/js/panels/presets/default-style-presets.js | |||
@@ -67,6 +67,24 @@ exports.stylePresets = { | |||
67 | "text-shadow": "1px 1px 3px #333" | 67 | "text-shadow": "1px 1px 3px #333" |
68 | } | 68 | } |
69 | }] | 69 | }] |
70 | }, | ||
71 | { | ||
72 | "text": "White Sans-Serif", | ||
73 | "selectorBase" : "white-sans-serif", | ||
74 | "rules" : [{ | ||
75 | "selectorSuffix" : "", | ||
76 | "styles" : { | ||
77 | "color": "#FFFFFF", | ||
78 | "font-family": "helvetica,arial,sans-serif" | ||
79 | } | ||
80 | }, | ||
81 | { | ||
82 | "selectorSuffix" : " h2", | ||
83 | "styles" : { | ||
84 | "color": "#C1C1C1", | ||
85 | "font-family": "helvetica,arial,sans-serif" | ||
86 | } | ||
87 | }] | ||
70 | }] | 88 | }] |
71 | }] | 89 | }] |
72 | }; \ No newline at end of file | 90 | }; \ No newline at end of file |