aboutsummaryrefslogtreecommitdiff
path: root/js/stage/stage.reel
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-31 15:53:45 -0700
committerValerio Virgillito2012-05-31 15:53:45 -0700
commit163e977e5819b4bf7029be0562ee7f31045f05c4 (patch)
tree6af957dbf698422c77716d3f0499d2b6d7fcc4f1 /js/stage/stage.reel
parentffe6c157279e115f4658d8c66622085f05cfbf43 (diff)
downloadninja-163e977e5819b4bf7029be0562ee7f31045f05c4.tar.gz
removing the stage view component as it is not used anymore
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/stage/stage.reel')
-rwxr-xr-xjs/stage/stage.reel/stage.css47
-rwxr-xr-xjs/stage/stage.reel/stage.html10
2 files changed, 47 insertions, 10 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
43span.CodeMirror-matchhighlight { background: #e9e9e9 }
44.CodeMirror-focused span.CodeMirror-matchhighlight { background: #e7e4ff; !important }
45div.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
diff --git a/js/stage/stage.reel/stage.html b/js/stage/stage.reel/stage.html
index 45667e06..7a9619cd 100755
--- a/js/stage/stage.reel/stage.html
+++ b/js/stage/stage.reel/stage.html
@@ -11,13 +11,6 @@
11 11
12 <script type="text/montage-serialization"> 12 <script type="text/montage-serialization">
13 { 13 {
14 "stageView" : {
15 "prototype": "js/stage/stage-view.reel",
16 "properties": {
17 "element": {"#": "stageView"}
18 }
19 },
20
21 "stageDeps": { 14 "stageDeps": {
22 "prototype": "js/stage/stage-deps", 15 "prototype": "js/stage/stage-deps",
23 "properties": { 16 "properties": {
@@ -59,7 +52,6 @@
59 "_drawingCanvas": {"#": "drawingCanvas"}, 52 "_drawingCanvas": {"#": "drawingCanvas"},
60 "stageDeps": {"@": "stageDeps"}, 53 "stageDeps": {"@": "stageDeps"},
61 "layout": {"@": "layout"}, 54 "layout": {"@": "layout"},
62 "stageView": {"@": "stageView"},
63 "textTool": {"@": "textTool"}, 55 "textTool": {"@": "textTool"},
64 "focusManager": {"@": "focusManager"} 56 "focusManager": {"@": "focusManager"}
65 }, 57 },
@@ -78,7 +70,7 @@
78<body> 70<body>
79 71
80 <section data-montage-id="stageAndScenesContainer" class="stageAndScenesContainer"> 72 <section data-montage-id="stageAndScenesContainer" class="stageAndScenesContainer">
81 <section data-montage-id="stageView"></section> 73 <section id="codeViewContainer" class="codeViewContainer"></section>
82 <section data-montage-id="iframeContainer" id="iframeContainer"></section> 74 <section data-montage-id="iframeContainer" id="iframeContainer"></section>
83 <section data-montage-id="textToolObject"></section> 75 <section data-montage-id="textToolObject"></section>
84 <canvas data-montage-id="gridCanvas" class="gridCanvas"></canvas> 76 <canvas data-montage-id="gridCanvas" class="gridCanvas"></canvas>