aboutsummaryrefslogtreecommitdiff
path: root/_scss/imports/scss/_Stage.scss
diff options
context:
space:
mode:
Diffstat (limited to '_scss/imports/scss/_Stage.scss')
-rwxr-xr-x_scss/imports/scss/_Stage.scss155
1 files changed, 0 insertions, 155 deletions
diff --git a/_scss/imports/scss/_Stage.scss b/_scss/imports/scss/_Stage.scss
deleted file mode 100755
index faf8ee94..00000000
--- a/_scss/imports/scss/_Stage.scss
+++ /dev/null
@@ -1,155 +0,0 @@
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#middleDocArea {
8 -webkit-box-orient: horizontal;
9 -moz-box-orient: horizontal;
10 box-orient: horizontal;
11
12 -moz-box-flex: 1;
13 -webkit-box-flex: 1;
14 box-flex: 1;
15
16 margin: 1px;
17 margin-bottom:3px;
18
19 border-style: solid;
20 border-width: 1px;
21}
22
23// Used for the Iframe Version
24#mainStageIFrame {
25 border: none;
26 margin: 4px;
27}
28
29
30
31
32#mainStageArea {
33 -moz-box-flex: 1;
34 -webkit-box-flex: 1;
35 box-flex: 1;
36
37 overflow: scroll;
38 position: relative;
39
40 margin: 0px;
41 padding: 0px;
42 border: none;
43}
44
45#pasteBoard {
46 // position: relative;
47 top: 0px;
48 left: 0px;
49 margin: 0px;
50 padding: 0px;
51 border: none;
52
53 // overflow: scroll;
54}
55
56
57#stageBG {
58 width:100%;
59 height:100%;
60 background-color: red;
61 position: absolute;
62 margin-left: auto;
63 margin-right: auto;
64 left: 0;
65 right: 0;
66 top: 150px;
67
68 z-index: 0;
69}
70
71#stageUserContent {
72 width:100%;
73 height:100%;
74 background-color: transparent;
75 border : 1px solid $color-body-border;
76
77 position: absolute;
78 margin-left: auto;
79 margin-right: auto;
80 left: 0;
81 right: 0;
82 top: 150px;
83
84 z-index: 1;
85}
86
87#stageParent {
88 // we aren't entirely sure why this works but putting a slight opacity on this div
89 // seems to keep the users content from breaking through the overlay canvas and eating mouse events
90 // John Mayhew
91
92 z-index: 2;
93 opacity: 0.99;
94 // height: 1000px;
95 // width: 2000px;
96 position: absolute;
97 margin: 0px;
98 border: none;
99 padding: 0px;
100 top: 0px;
101 left: 0px;
102 // background-color: red;
103}
104
105.global3DSettings {
106 -webkit-transform-style: preserve-3d;
107 -webkit-transform:perspective(1400) matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);
108}
109
110.perspective3D {
111 -webkit-perspective: 1400;
112}
113
114#iframeContainer {
115 position: absolute;
116 top: 0px;
117 left: 0px;
118 margin: 0px;
119 padding: 0px;
120 width:100%;
121 height:100%;
122 overflow:scroll;
123 background:$color-stage;
124}
125
126#drawingCanvas {
127 position: absolute;
128 margin: 0px;
129 border: none;
130 padding: 0px;
131 top: 0px;
132 left: 0px;
133 z-index: 6;
134}
135
136
137#stageCanvas {
138 position: absolute;
139 margin: 0px;
140 border: none;
141 padding: 0px;
142 top: 0px;
143 left: 0px;
144 z-index: 5;
145}
146
147#layoutCanvas {
148 position: absolute;
149 margin: 0px;
150 border: none;
151 padding: 0px;
152 top: 0px;
153 left: 0px;
154 z-index: 4;
155}