diff options
author | Valerio Virgillito | 2012-07-17 11:29:09 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-07-17 11:29:09 -0700 |
commit | 58e86247524cc2d545bd6884f1b5c9fdba3b9164 (patch) | |
tree | 53305d354fce502ee39378babf47ace6c91ce2fd /imports/codemirror/mode/less/index.html | |
parent | 0f0cffd4df85e7adf5081fe66c768c70b2ead9b3 (diff) | |
parent | 4f737b24c19ddc02d20f9783b8b080fc6ef11142 (diff) | |
download | ninja-58e86247524cc2d545bd6884f1b5c9fdba3b9164.tar.gz |
Merge branch 'refs/heads/master' into v0.7.1
Diffstat (limited to 'imports/codemirror/mode/less/index.html')
-rw-r--r-- | imports/codemirror/mode/less/index.html | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/imports/codemirror/mode/less/index.html b/imports/codemirror/mode/less/index.html index f7705205..cad8e4b2 100644 --- a/imports/codemirror/mode/less/index.html +++ b/imports/codemirror/mode/less/index.html | |||
@@ -5,7 +5,7 @@ | |||
5 | <link rel="stylesheet" href="../../lib/codemirror.css"> | 5 | <link rel="stylesheet" href="../../lib/codemirror.css"> |
6 | <script src="../../lib/codemirror.js"></script> | 6 | <script src="../../lib/codemirror.js"></script> |
7 | <script src="less.js"></script> | 7 | <script src="less.js"></script> |
8 | <style>.CodeMirror {background: #f8f8f8; border: 1px solid #ddd;}</style> | 8 | <style>.CodeMirror {background: #f8f8f8; border: 1px solid #ddd; font-size:12px} .CodeMirror-scroll {height: 400px}</style> |
9 | <link rel="stylesheet" href="../../doc/docs.css"> | 9 | <link rel="stylesheet" href="../../doc/docs.css"> |
10 | <link rel="stylesheet" href="../../theme/lesser-dark.css"> | 10 | <link rel="stylesheet" href="../../theme/lesser-dark.css"> |
11 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | 11 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
@@ -14,15 +14,28 @@ | |||
14 | <h1>CodeMirror: LESS mode</h1> | 14 | <h1>CodeMirror: LESS mode</h1> |
15 | <form><textarea id="code" name="code">/* Some LESS code */ | 15 | <form><textarea id="code" name="code">/* Some LESS code */ |
16 | 16 | ||
17 | button { | ||
18 | width: 32px; | ||
19 | height: 32px; | ||
20 | border: 0; | ||
21 | margin: 4px; | ||
22 | cursor: pointer; | ||
23 | } | ||
24 | button.icon-plus { background: url(http://dahlström.net/tmp/sharp-icons/svg-icon-target.svg#plus) no-repeat; } | ||
25 | button.icon-chart { background: url(http://dahlström.net/tmp/sharp-icons/svg-icon-target.svg#chart) no-repeat; } | ||
26 | |||
27 | button:hover { background-color: #999; } | ||
28 | button:active { background-color: #666; } | ||
29 | |||
17 | @test_a: #eeeQQQ;//this is not a valid hex value and thus parsed as an element id | 30 | @test_a: #eeeQQQ;//this is not a valid hex value and thus parsed as an element id |
18 | @test_b: #eeeFFF//this is a valid hex value but the declaration doesn't end with a semicolon and thus parsed as an element id | 31 | @test_b: #eeeFFF //this is a valid hex value but the declaration doesn't end with a semicolon and thus parsed as an element id |
19 | 32 | ||
20 | #eee aaa .box | 33 | #eee aaa .box |
21 | { | 34 | { |
22 | #test bbb { | 35 | #test bbb { |
23 | width: 500px; | 36 | width: 500px; |
24 | height: 250px; | 37 | height: 250px; |
25 | background-image: url(sheep.png), url(betweengrassandsky.png); | 38 | background-image: url(dir/output/sheep.png), url( betweengrassandsky.png ); |
26 | background-position: center bottom, left top; | 39 | background-position: center bottom, left top; |
27 | background-repeat: no-repeat; | 40 | background-repeat: no-repeat; |
28 | } | 41 | } |
@@ -594,10 +607,12 @@ td { | |||
594 | </textarea></form> | 607 | </textarea></form> |
595 | <script> | 608 | <script> |
596 | var editor = CodeMirror.fromTextArea(document.getElementById("code"), { | 609 | var editor = CodeMirror.fromTextArea(document.getElementById("code"), { |
597 | theme: "lesser-dark" | 610 | theme: "lesser-dark", |
611 | lineNumbers : true, | ||
612 | matchBrackets : true | ||
598 | }); | 613 | }); |
599 | </script> | 614 | </script> |
600 | 615 | ||
601 | <p><strong>MIME types defined:</strong> <code>text/less</code>.</p> | 616 | <p><strong>MIME types defined:</strong> <code>text/x-less</code>, <code>text/css</code> (if not previously defined).</p> |
602 | </body> | 617 | </body> |
603 | </html> | 618 | </html> |