diff options
author | Pushkar Joshi | 2012-02-24 12:08:49 -0800 |
---|---|---|
committer | Pushkar Joshi | 2012-02-24 12:08:49 -0800 |
commit | 03ca7a5ed13c25faaa9100bb666e062fd15335e6 (patch) | |
tree | c51112223ceb9121cd595a60335eb2795215590f /imports/codemirror/lib/util/dialog.css | |
parent | fcb12cc09eb3cd3b42bd215877ba18f449275b75 (diff) | |
parent | 053fc63a2950c7a5ee4ebf98033b64d474a3c46e (diff) | |
download | ninja-03ca7a5ed13c25faaa9100bb666e062fd15335e6.tar.gz |
Merge branch 'pentool' into brushtool
Conflicts:
imports/codemirror/mode/scheme/scheme.js
js/tools/BrushTool.js
Diffstat (limited to 'imports/codemirror/lib/util/dialog.css')
-rwxr-xr-x | imports/codemirror/lib/util/dialog.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/imports/codemirror/lib/util/dialog.css b/imports/codemirror/lib/util/dialog.css new file mode 100755 index 00000000..4cb467ef --- /dev/null +++ b/imports/codemirror/lib/util/dialog.css | |||
@@ -0,0 +1,23 @@ | |||
1 | .CodeMirror-dialog { | ||
2 | position: relative; | ||
3 | } | ||
4 | |||
5 | .CodeMirror-dialog > div { | ||
6 | position: absolute; | ||
7 | top: 0; left: 0; right: 0; | ||
8 | background: white; | ||
9 | border-bottom: 1px solid #eee; | ||
10 | z-index: 15; | ||
11 | padding: .1em .8em; | ||
12 | overflow: hidden; | ||
13 | color: #333; | ||
14 | } | ||
15 | |||
16 | .CodeMirror-dialog input { | ||
17 | border: none; | ||
18 | outline: none; | ||
19 | background: transparent; | ||
20 | width: 20em; | ||
21 | color: inherit; | ||
22 | font-family: monospace; | ||
23 | } | ||