aboutsummaryrefslogtreecommitdiff
path: root/js/stage/stage-view.reel/stage-view.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/stage/stage-view.reel/stage-view.css')
-rwxr-xr-xjs/stage/stage-view.reel/stage-view.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/js/stage/stage-view.reel/stage-view.css b/js/stage/stage-view.reel/stage-view.css
new file mode 100755
index 00000000..f15f74a0
--- /dev/null
+++ b/js/stage/stage-view.reel/stage-view.css
@@ -0,0 +1,36 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.codeViewContainer {
8 position: absolute;
9 top: 0px;
10 left: 0px;
11 margin: 0px;
12 padding: 0px;
13 background: black;
14 width: 100%;
15 height: 100%;
16 /*display: none;*/
17}
18
19/* OLD CSS for reference
20#mainContent #codeMirror_1 {
21 height:100%;
22}
23*/
24
25.CodeMirror {
26 width: 100%;
27 height: 100%;
28 background: white;
29}
30
31.CodeMirror .CodeMirror-scroll {
32 height: 100%;
33 overflow: scroll;
34 overflow-x: auto;
35 overflow-y: auto;
36}