aboutsummaryrefslogtreecommitdiff
path: root/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_PanelUI.scssc
diff options
context:
space:
mode:
Diffstat (limited to '_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_PanelUI.scssc')
-rw-r--r--_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_PanelUI.scssc1684
1 files changed, 0 insertions, 1684 deletions
diff --git a/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_PanelUI.scssc b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_PanelUI.scssc
deleted file mode 100644
index cf19df48..00000000
--- a/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_PanelUI.scssc
+++ /dev/null
@@ -1,1684 +0,0 @@
13.0.24 (Classy Cassidy)
27f5158c797572fbfc123a63d6341e8c9bfe2dd24
3o:Sass::Tree::RootNode
4:
5@linei: @options{:
6style: expanded:load_paths[ ",/Users/rmwh84/Sites/Ninja/MainApp/_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:
7cacheT:cache_location"8/Users/rmwh84/Sites/Ninja/MainApp/_scss/.sass-cache: syntax: scss:line_commentsT:
8quietT: filename"G/Users/rmwh84/Sites/Ninja/MainApp/_scss/imports/scss/_PanelUI.scss:css_filename"=/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css/ninja.css:property_syntax0:@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 /*
26 this is here to hopefully show vertical scroll bars when the panels exceed the height of the panel
27 unfortunately it doesn't seem to work properly. this is probably due to some of our box styling or positioning
28 overflow: auto; */
29}
30
31/* base layout style for all panels*/
32.panelDisclosureIcon
33{
34 background-image:url("../images/panels/panelDisclosureIcon.png");
35 background-repeat:no-repeat;
36 width:16px;
37 height:16px;
38 float:left;
39 -webkit-transition-property: rotate;
40 -webkit-transition-duration: 0.2s;
41 -webkit-transition-timing-function: linear;
42 padding-right:2px;
43}
44.panelBackground {
45 color: $color-panel-text;
46 background: $color-tool-bg;
47}
48
49.panelCollapseArrowFill {
50 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 */
51 padding:0px 4px;
52}
53
54.panelContentColor {
55 background: $color-panel-bg;
56 border-color: $color-panel-border;
57}
58.panelCaptionColor {
59 color: $color-panel-text;
60}
61
62
63/*
64 * Removed by Jon Reid. Please make this selector more specific to avoid
65 * styling ALL the labels in ANY panel.
66
67.panelContent label {
68 float: left;
69 width: 5em;
70 margin-right: 1em;
71 text-align: right;
72}
73*/
74
75.panelCaption {
76 padding: 2px 0px;
77 cursor:default;
78}
79
80.panelContainerTransition {
81 -moz-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
82 -o-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
83 -webkit-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
84}
85
86.panelCloseIcon
87{
88 background-image:url("../images/panels/closeIcon.png");
89 background-repeat:no-repeat;
90 width:15px;
91 height:14px;
92 float:right;
93 opacity:0.5;
94}
95
96.panelCloseIcon:hover
97{
98 opacity:1.0;
99}
100
101.toolsPanelContainer
102{
103 margin-top: -2px;
104 margin-left: -2px;
105 padding-top:20px;
106 padding-left:3px;
107 padding-right:3px;
108 width:32px;
109
110 /*This is a hack to get the tools panel to extend all the way to the bottom.*/
111 padding-bottom:450px;
112}
113
114/* sizes for the specific panels */
115
116#toolPropertiesPanel {
117 height: 32px;
118 margin:0px;
119}
120
121#timelinePanel {
122 height: 116px;
123}
124
125/* Only used by Animation Presets Panel currently */
126
127.treeComponent
128{
129 -webkit-user-select: none;
130 font-size : 11px;
131 margin-left: 20px;
132 cursor:default;
133 color: $color-panel-text;
134}
135
136.treeComponent ul
137{
138 position: relative;
139 list-style: none;
140}
141
142/*This sets the style for a tree folder's icon*/
143ul.treeComponent > img:first-child
144{
145 margin-left: -35px;
146 margin-right: 5px;
147 -webkit-transition: -webkit-transform 0.1s linear;
148}
149
150.treeComponent li
151{
152 position: relative;
153 list-style: none;
154 border-bottom:1px solid $color-panel-divider;
155}
156
157.treeComponent li img
158{
159 margin-left: -20px;
160 padding-right:10px;
161 vertical-align:middle;
162 /*border-bottom:1px solid #555555;*/
163}
164
165.treeCategory
166{
167 font-weight : bold;
168}
169
170.treeItem {
171 font-weight : normal;
172 vertical-align:middle;
173 color: $color-panel-text;
174}
175
176/* ====== Used by Properties Panel ====== */
177/* Removed the outline text input style -> Causing problems with the Canvas */
178
179.propertiesPanel
180{
181 min-height: 300px;
182 margin-top:4px;
183}
184
185.panelHRule
186{
187 border:none;
188 display:block;
189 float:left;
190 clear:both;
191 width:100%;
192 height:3px;
193 background-color: $color-panel-divider;
194}
195
196.vr
197{
198 position:absolute;
199 display:inline;
200 border:none;
201 clear:both;
202 width:2px;
203 height:26px;
204
205 background-image: -webkit-gradient(
206 linear,
207 left bottom,
208 right bottom,
209