diff options
Diffstat (limited to 'js/stage/stage.reel/stage.css')
-rwxr-xr-x | js/stage/stage.reel/stage.css | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/js/stage/stage.reel/stage.css b/js/stage/stage.reel/stage.css index 54b9761b..13537ba1 100755 --- a/js/stage/stage.reel/stage.css +++ b/js/stage/stage.reel/stage.css | |||
@@ -10,4 +10,49 @@ | |||
10 | box-flex: 1; | 10 | box-flex: 1; |
11 | position: relative; | 11 | position: relative; |
12 | overflow: hidden; | 12 | overflow: hidden; |
13 | } \ No newline at end of file | 13 | } |
14 | |||
15 | .codeViewContainer { | ||
16 | position: absolute; | ||
17 | top: 0px; | ||
18 | left: 0px; | ||
19 | margin: 0px; | ||
20 | padding: 0px; | ||
21 | background-color: #ffffff; | ||
22 | width: 100%; | ||
23 | height: 100%; | ||
24 | overflow:auto; | ||
25 | cursor:text; | ||
26 | } | ||
27 | |||
28 | .codeViewContainer .CodeMirror { | ||
29 | width: 100%; | ||
30 | height: 100%; | ||
31 | background: white; | ||
32 | } | ||
33 | |||
34 | .codeViewContainer .CodeMirror-scroll { | ||
35 | height: 100%; | ||
36 | overflow: auto; | ||
37 | } | ||
38 | |||
39 | .codeViewContainer>div{ | ||
40 | width:2500px;/*to prevent scrolling of editor container in the middle of the page for short files*/ | ||
41 | } | ||
42 | |||
43 | span.CodeMirror-matchhighlight { background: #e9e9e9 } | ||
44 | .CodeMirror-focused span.CodeMirror-matchhighlight { background: #e7e4ff; !important } | ||
45 | div.CodeMirror span.CodeMirror-matchingbracket {color: #000 !important;background-color: #ffd500;} | ||
46 | .CodeMirror-completions select {background-color:#e8f2ff;border:1px solid #c1c1c1;box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.8);} | ||
47 | .CodeMirror-completions {z-index:6001 !important;} | ||
48 | |||
49 | .cm-s-default .activeline {background: #e8f2ff; !important} | ||
50 | .cm-s-eclipse .activeline {background: #e8f2ff; !important} | ||
51 | .cm-s-elegant .activeline {background: #e8f2ff; !important} | ||
52 | .cm-s-neat .activeline {background: #e8f2ff; !important} | ||
53 | .cm-s-night .activeline {background: #8da6ce; !important} | ||
54 | .cm-s-cobalt .activeline {background: #8da6ce; !important} | ||
55 | .cm-s-monokai .activeline {background: #8da6ce; !important} | ||
56 | .cm-s-rubyblue .activeline {background: #3E7087; !important} | ||
57 | .cm-s-lesser-dark .activeline {background: #8da6ce; !important} | ||
58 | .cm-s-xq-dark .activeline {background: #8da6ce; !important} \ No newline at end of file | ||