diff options
Diffstat (limited to '_scss')
37 files changed, 6300 insertions, 0 deletions
diff --git a/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_Base.scssc b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_Base.scssc new file mode 100644 index 00000000..49f58b5a --- /dev/null +++ b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_Base.scssc | |||
Binary files differ | |||
diff --git a/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_Components.scssc b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_Components.scssc new file mode 100644 index 00000000..38415553 --- /dev/null +++ b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_Components.scssc | |||
Binary files differ | |||
diff --git a/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_MainWindow.scssc b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_MainWindow.scssc new file mode 100644 index 00000000..d9a82daa --- /dev/null +++ b/_scss/.sass-cache/00e44b9921bd33f78c5d566e59665c128be109ba/_MainWindow.scssc | |||
@@ -0,0 +1,437 @@ | |||
1 | 3.0.24 (Classy Cassidy) | ||
2 | 962a1ab0ef1e7d35ecb9743bbd47fbbf3b79de41 | ||
3 | o:Sass::Tree::RootNode | ||
4 | : | ||
5 | @linei: @options{: | ||
6 | style: expanded:load_paths[ "./public/stylesheets/sass",/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: | ||
7 | cacheT:cache_location"8/Users/rmwh84/Sites/Ninja/MainApp/_scss/.sass-cache:syntax: scss:full_exceptionT:css_location"./public/stylesheets:always_updateF:always_checkT:line_commentsT:template_location[ [@@[@ "3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css[@ | ||
8 | "3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css[@"3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css[@"3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css[@ "3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css[@"3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css[@"3/Users/rmwh84/Sites/Ninja/MainApp/_scss/../css: filename"J/Users/rmwh84/Sites/Ninja/MainApp/_scss/imports/scss/_MainWindow.scss:property_syntax0:@template"1G/* <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 | * MainWindow.scss | ||
16 | * Styles governing the main window and overall layout of the application. | ||
17 | * Note that colors and font definitions go in | ||
18 | * _scss/themes/themename/_colors.scss and _scss/themes/themename/_fonts.scss | ||
19 | */ | ||
20 | |||
21 | body { | ||
22 | position: absolute; | ||
23 | margin: 0px; | ||
24 | width: 100%; | ||
25 | height:100%; | ||
26 | background-color:$color-app-bg; | ||
27 | overflow: hidden; | ||
28 | -webkit-user-select:none; | ||
29 | font-family: 'DroidSans'; | ||
30 | } | ||
31 | |||
32 | #appContainer { | ||
33 | position: absolute; | ||
34 | margin: 0px; | ||
35 | display: -webkit-box; | ||
36 | -webkit-box-orient: vertical; | ||
37 | -webkit-box-align: stretch; | ||
38 | width: 100%; | ||
39 | height: 100%; | ||
40 | border-left: 16px solid #000; | ||
41 | border-right: 16px solid #000; | ||
42 | border-top: 28px solid #000; | ||
43 | -webkit-box-sizing: border-box; | ||
44 | max-width:100%; | ||
45 | max-height:100%; | ||
46 | } | ||
47 | |||
48 | #appContainer > section { | ||
49 | display: -webkit-box; | ||
50 | -webkit-box-flex:0; | ||
51 | } | ||
52 | |||
53 | #appContainer #appWorkspace { | ||
54 | -webkit-box-flex:1; | ||
55 | -webkit-box-align: stretch; | ||
56 | } | ||
57 | |||
58 | #appWorkspace { | ||
59 | display: -webkit-box; | ||
60 | -webkit-box-orient: horizontal; | ||
61 | -webkit-box-pack: center; | ||
62 | -webkit-box-align: center; | ||
63 | -webkit-box-sizing: stretch; | ||
64 | position:relative; | ||
65 | padding:2px 0px; | ||
66 | border: 1px solid #333; | ||
67 | overflow: hidden; | ||
68 | } | ||
69 | |||
70 | #topMenu { | ||
71 | background-color: #474747; | ||
72 | position:absolute; | ||
73 | height:28px; | ||
74 | width:100%; | ||
75 | top:0px; | ||
76 | left:0px; | ||
77 | z-index: 8999; | ||
78 | } | ||
79 | |||
80 | #topPanelContainer, | ||
81 | #leftPanelContainer, | ||
82 | #rightPanelContainer, | ||
83 | #bottomPanelContainer { | ||
84 | background-color: #282828; | ||
85 | } | ||
86 | #topPanelContainer { | ||
87 | overflow: hidden; | ||
88 | margin-bottom:2px; | ||
89 | height:32px; | ||
90 | } | ||
91 | |||
92 | #bottomPanelContainer { | ||
93 | /*border: 1px solid #333; | ||
94 | background: transparent; | ||
95 | */ | ||
96 | min-height:80px; | ||
97 | max-height:50%; | ||
98 | overflow:auto; | ||
99 | |||
100 | } | ||
101 | |||
102 | .panelContainer { | ||
103 | display:block; | ||
104 | -webkit-box-orient: vertical; | ||
105 | position:relative; | ||
106 | } | ||
107 | |||
108 | #leftPanelContainer { | ||
109 | width:40px; | ||
110 | -webkit-box-align:stretch; | ||
111 | -webkit-box-sizing: border-box; | ||
112 | margin-left:2px; | ||
113 | |||
114 | } | ||
115 | #rightPanelContainer { | ||
116 | width:253px; | ||
117 | min-width:253px; | ||
118 | max-width:45%; | ||
119 | -webkit-box-sizing: border-box; | ||
120 | right:0px; | ||
121 | margin-right:2px; | ||
122 | border-right:2px solid #282828; | ||
123 | } | ||
124 | |||
125 | #mainContainer { | ||
126 | -webkit-box-flex:1; | ||
127 | margin: 0px 2px; | ||
128 | display: -webkit-box; | ||
129 | position:relative; | ||
130 | } | ||
131 | |||
132 | .mainContainerContent { | ||
133 | position:absolute; | ||
134 | display: -webkit-box; | ||
135 | width:100%; | ||
136 | height:100%; | ||
137 | -webkit-box-orient: vertical; | ||
138 | |||
139 | } | ||
140 | |||
141 | .mainContainerContent > #mainContent { | ||
142 | -webkit-box-flex:1; | ||
143 | display: -webkit-box; | ||
144 | -webkit-box-orient: horizontal; | ||
145 | margin-top:0px; | ||
146 | } | ||
147 | .mainContainerContent > section { | ||
148 | margin-top: 2px; | ||
149 | -webkit-box-flex:0; | ||
150 | } | ||
151 | .mainContainerContent > section:first-child { | ||