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