diff options
author | Valerio Virgillito | 2012-05-04 15:31:40 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-04 15:31:40 -0700 |
commit | 3ebed34665fa73b0ce613b400f3029ebf4476439 (patch) | |
tree | 09a3c592035030bda7bb62d1f908ce263377d74c /imports/codemirror/mode/css | |
parent | 8dcbac5d4c30e9dfbc543a5f997939111e9c9f89 (diff) | |
parent | 526e423e4a2734c2b139af23911e912452a4443f (diff) | |
download | ninja-3ebed34665fa73b0ce613b400f3029ebf4476439.tar.gz |
Merge branch 'refs/heads/master' into dom-architecture
Diffstat (limited to 'imports/codemirror/mode/css')
-rw-r--r-- | imports/codemirror/mode/css/css.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imports/codemirror/mode/css/css.js b/imports/codemirror/mode/css/css.js index 45170a3d..050e1124 100644 --- a/imports/codemirror/mode/css/css.js +++ b/imports/codemirror/mode/css/css.js | |||
@@ -92,7 +92,7 @@ CodeMirror.defineMode("css", function(config) { | |||
92 | var style = state.tokenize(stream, state); | 92 | var style = state.tokenize(stream, state); |
93 | 93 | ||
94 | var context = state.stack[state.stack.length-1]; | 94 | var context = state.stack[state.stack.length-1]; |
95 | if (type == "hash" && context == "rule") style = "atom"; | 95 | if (type == "hash" && context != "rule") style = "string-2"; |
96 | else if (style == "variable") { | 96 | else if (style == "variable") { |
97 | if (context == "rule") style = "number"; | 97 | if (context == "rule") style = "number"; |
98 | else if (!context || context == "@media{") style = "tag"; | 98 | else if (!context || context == "@media{") style = "tag"; |