diff options
author | Nivesh Rajbhandari | 2012-02-20 11:14:44 -0800 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-02-20 11:14:44 -0800 |
commit | abf78e2d7a97d295ce5a1c425fd359d47379137e (patch) | |
tree | d08c91bd2aef31e6325e0b499b2ffc390018bec6 /imports/codemirror/lib/util/dialog.css | |
parent | e80a79bff57fecf3aa9b869d8ed2de5fd815287c (diff) | |
parent | e23708721a71ca4c71365f5f8e8ac7d6113926db (diff) | |
download | ninja-abf78e2d7a97d295ce5a1c425fd359d47379137e.tar.gz |
Merge branch 'refs/heads/ninja-internal' into ToolFixes
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 | } | ||