3.0.24 (Classy Cassidy)
4049ece5a07f24a51a314472a63e0bec2342e6e9
o:Sass::Tree::RootNode
:
@linei:
@options{:
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:
cacheT:cache_location"8/Users/DHG637/Sites/ninja-internal/scss/.sass-cache:syntax: scss:
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>
// This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
// No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
// (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
// </copyright>
//
// PanelUI.scss
// Styles governing the panels in the UI.
// Note that colors and font definitions go in
// _scss/themes/themename/_colors.scss and _scss/themes/themename/_fonts.scss
// layout for the container of all panels within a dock area
.panelContainer {
margin: 0px;
padding: 0px 0px;
position:relative;
// this is here to hopefully show vertical scroll bars when the panels exceed the height of the panel
// unfortunately it doesn't seem to work properly. this is probably due to some of our box styling or positioning
overflow: auto;
}
// base layout style for all panels
.panelDisclosureIcon
{
background-image:url("../images/panels/panelDisclosureIcon.png");
background-repeat:no-repeat;
width:16px;
height:16px;
float:left;
-webkit-transition-property: rotate;
-webkit-transition-duration: 0.2s;
-webkit-transition-timing-function: linear;
padding-right:2px;
}
.panelBackground {
color: $color-panel-text;
background: $color-tool-bg;
}
.panelCollapseArrowFill {
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
padding:0px 4px;
}
.panelContentColor {
background: $color-panel-bg;
border-color: $color-panel-border;
}
.panelCaptionColor {
color: $color-panel-text;
}
.panelCaption {
padding: 2px 0px;
cursor:default;
}
.panelContainerTransition {
-moz-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
-o-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
-webkit-transition: width 0.3s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
}
.panelCloseIcon
{
background-image:url("../images/panels/closeIcon.png");
background-repeat:no-repeat;
width:15px;
height:14px;
float:right;
opacity:0.5;
}
.panelCloseIcon:hover
{
opacity:1.0;
}
.toolsPanelContainer
{
margin-top: -2px;
margin-left: -2px;
padding-top:20px;
padding-left:3px;
padding-right:3px;
width:32px;
// This is a hack to get the tools panel to extend all the way to the bottom.
padding-bottom:450px;
}
// sizes for the specific panels
#toolPropertiesPanel {
height: 32px;
margin:0px;
}
#timelinePanel {
height: 100%;
}
// Only used by Animation Presets Panel currently
.treeComponent
{
-webkit-user-select: none;
font-size : 11px;
margin-left: 20px;
cursor:default;
color: $color-panel-text;
}
.treeComponent ul
{
position: relative;
list-style: none;
}
// This sets the style for a tree folder's icon
ul.treeComponent > img:first-child
{
margin-left: -35px;
margin
|