diff options
Diffstat (limited to 'scss/.sass-cache/bf7669b9251ffa007260472c0d41aebd1dfdcf8a/_PanelUI.scssc')
-rw-r--r-- | scss/.sass-cache/bf7669b9251ffa007260472c0d41aebd1dfdcf8a/_PanelUI.scssc | 1638 |
1 files changed, 0 insertions, 1638 deletions
diff --git a/scss/.sass-cache/bf7669b9251ffa007260472c0d41aebd1dfdcf8a/_PanelUI.scssc b/scss/.sass-cache/bf7669b9251ffa007260472c0d41aebd1dfdcf8a/_PanelUI.scssc deleted file mode 100644 index e5467c16..00000000 --- a/scss/.sass-cache/bf7669b9251ffa007260472c0d41aebd1dfdcf8a/_PanelUI.scssc +++ /dev/null | |||
@@ -1,1638 +0,0 @@ | |||
1 | 3.0.24 (Classy Cassidy) | ||
2 | 4049ece5a07f24a51a314472a63e0bec2342e6e9 | ||
3 | o:Sass::Tree::RootNode | ||
4 | : | ||
5 | @linei: @options{: | ||
6 | style:compact:load_paths[",/Users/DHG637/Sites/ninja-internal/scss"o/Applications/compass.app/Contents/Resources/ruby/gem/gems/compass-0.10.6/frameworks/blueprint/stylesheets"~/Applications/compass.app/Contents/Resources/ruby/gem/gems/compass-0.10.6/frameworks/_blueprint_deprecated_imports/stylesheets"m/Applications/compass.app/Contents/Resources/ruby/gem/gems/compass-0.10.6/frameworks/compass/stylesheets"|/Applications/compass.app/Contents/Resources/ruby/gem/gems/compass-0.10.6/frameworks/_compass_deprecated_imports/stylesheets"l/Applications/compass.app/Contents/Resources/ruby/gem/gems/compass-960-plugin-0.10.0/lib/../stylesheets"j/Applications/compass.app/Contents/Resources/ruby/gem/gems/html5-boilerplate-0.2.6/lib/../stylesheets: | ||
7 | cacheT:cache_location"8/Users/DHG637/Sites/ninja-internal/scss/.sass-cache:syntax: scss: | ||
8 | quietT: filename"G/Users/DHG637/Sites/ninja-internal/scss/imports/scss/_PanelUI.scss:css_filename"=/Users/DHG637/Sites/ninja-internal/scss/../css/ninja.css:line_comments0:property_syntax0:@has_childrenT:@template"¶†// <copyright> | ||
9 | // This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
10 | // No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
11 | // (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
12 | // </copyright> | ||
13 | |||
14 | // | ||
15 | // PanelUI.scss | ||
16 | // Styles governing the panels in the UI. | ||
17 | // Note that colors and font definitions go in | ||
18 | // _scss/themes/themename/_colors.scss and _scss/themes/themename/_fonts.scss | ||
19 | |||
20 | // layout for the container of all panels within a dock area | ||
21 | .panelContainer { | ||
22 | margin: 0px; | ||
23 | padding: 0px 0px; | ||
24 | position:relative; | ||
25 | // this is here to hopefully show vertical scroll bars when the panels exceed the height of the panel | ||
26 | // unfortunately it doesn't seem to work properly. this is probably due to some of our box styling or positioning | ||
27 | overflow: auto; | ||
28 | } | ||
29 | |||
30 | // base layout style for all panels | ||
31 | .panelDisclosureIcon | ||
32 | { | ||
33 | background-image:url("../images/panels/panelDisclosureIcon.png"); | ||
34 | background-repeat:no-repeat; | ||
35 | width:16px; | ||
36 | height:16px; | ||
37 | float:left; | ||
38 | -webkit-transition-property: rotate; | ||
39 | -webkit-transition-duration: 0.2s; | ||
40 | -webkit-transition-timing-function: linear; | ||
41 | padding-right:2px; | ||
42 | } | ||
43 | .panelBackground { | ||
44 | color: $color-panel-text; | ||
45 | background: $color-tool-bg; | ||
46 | } | ||
47 | |||
48 | .panelCollapseArrowFill { | ||
49 | color: rgba(76,76,76,1); // this is never really used but is set so we can get it via javascript to draw the control via script on the canvas | ||
50 | padding:0px 4px; | ||
51 | } | ||
52 | |||
53 | .panelContentColor { | ||
54 | background: $color-panel-bg; | ||
55 | border-color: $color-panel-border; | ||
56 | } | ||
57 | .panelCaptionColor { | ||
58 | color: $color-panel-text; | ||
59 | } | ||
60 | |||
61 | .panelCaption { | ||
62 | padding: 2px 0px; | ||
63 | cursor:default; | ||
64 | } | ||
65 | |||
66 | .panelContainerTransition { | ||
67 | -moz-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out; | ||
68 | -o-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out; | ||
69 | -webkit-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out; | ||
70 | } | ||
71 | |||
72 | .panelCloseIcon | ||
73 | { | ||
74 | background-image:url("../images/panels/closeIcon.png"); | ||
75 | background-repeat:no-repeat; | ||
76 | width:15px; | ||
77 | height:14px; | ||
78 | float:right; | ||
79 | opacity:0.5; | ||
80 | } | ||
81 | |||
82 | .panelCloseIcon:hover | ||
83 | { | ||
84 | opacity:1.0; | ||
85 | } | ||
86 | |||
87 | .toolsPanelContainer | ||
88 | { | ||
89 | margin-top: -2px; | ||
90 | margin-left: -2px; | ||
91 | padding-top:20px; | ||
92 | padding-left:3px; | ||
93 | padding-right:3px; | ||
94 | width:32px; | ||
95 | |||
96 | // This is a hack to get the tools panel to extend all the way to the bottom. | ||
97 | padding-bottom:450px; | ||
98 | } | ||
99 | |||
100 | // sizes for the specific panels | ||
101 | |||
102 | #toolPropertiesPanel { | ||
103 | height: 32px; | ||
104 | margin:0px; | ||
105 | } | ||
106 | |||
107 | #timelinePanel { | ||
108 | height: 100%; | ||
109 | } | ||
110 | |||
111 | // Only used by Animation Presets Panel currently | ||
112 | |||
113 | .treeComponent | ||
114 | { | ||
115 | -webkit-user-select: none; | ||
116 | font-size : 11px; | ||
117 | margin-left: 20px; | ||
118 | cursor:default; | ||
119 | color: $color-panel-text; | ||
120 | } | ||
121 | |||
122 | .treeComponent ul | ||
123 | { | ||
124 | position: relative; | ||
125 | list-style: none; | ||
126 | } | ||
127 | |||
128 | // This sets the style for a tree folder's icon | ||
129 | ul.treeComponent > img:first-child | ||
130 | { | ||
131 | margin-left: -35px; | ||
132 | margin-right: 5px; | ||
133 | -webkit-transition: -webkit-transform 0.1s linear; | ||
134 | } | ||
135 | |||
136 | .treeComponent li | ||
137 | { | ||
138 | position: relative; | ||
139 | list-style: none; | ||
140 | border-bottom:1px solid $color-panel-divider; | ||
141 | } | ||
142 | |||
143 | .treeComponent li img | ||
144 | { | ||
145 | margin-left: -20px; | ||
146 | padding-right:10px; | ||
147 | vertical-align:middle; | ||
148 | // border-bottom:1px solid #555555; | ||
149 | } | ||
150 | |||
151 | .treeCategory | ||
152 | { | ||
153 | font-weight : bold; | ||
154 | } | ||
155 | |||
156 | .treeItem { | ||
157 | font-weight : normal; | ||
158 | vertical-align:middle; | ||
159 | color: $color-panel-text; | ||
160 | } | ||
161 | |||
162 | // ====== Used by Properties Panel ====== | ||
163 | // Removed the outline text input style -> Causing problems with the Canvas | ||
164 | |||
165 | .propertiesPanel | ||
166 | { | ||
167 | min-height: 300px; | ||
168 | margin-top:4px; | ||
169 | } | ||
170 | |||
171 | .panelHRule | ||
172 | { | ||
173 | border:none; | ||
174 | display:block; | ||
175 | float:left; | ||
176 | clear:both; | ||
177 | width:100%; | ||
178 | height:3px; | ||
179 | background-color: $color-panel-divider; | ||
180 | } | ||
181 | |||
182 | .vr | ||
183 | { | ||
184 | position:absolute; | ||
185 | display:inline; | ||
186 | border:none; | ||
187 | clear:both; | ||
188 | width:2px; | ||
189 | height:26px; | ||
190 | |||
191 | background-image: -webkit-gradient( | ||
192 | linear, | ||
193 | left bottom, | ||
194 | right bottom, | ||
195 | color-stop(0.4, $color-menu-border), | ||
196 | color-stop(0.8, $color-panel-shadow) | ||
197 | ) | ||
198 | } | ||
199 | |||
200 | .panelInputText | ||
201 | { | ||
202 | resize: none; | ||
203 | color: white; | ||
204 | background-color: $color-panel-input-bg; | ||
205 | border: 1px solid $color-panel-input-border; | ||
206 | width : 100px; | ||
207 | outline: none; |