diff options
Diffstat (limited to '_scss/imports/scss')
-rw-r--r-- | _scss/imports/scss/_Base.scss | 211 | ||||
-rw-r--r-- | _scss/imports/scss/_Components.scss | 33 | ||||
-rw-r--r-- | _scss/imports/scss/_MainWindow.scss | 338 | ||||
-rw-r--r-- | _scss/imports/scss/_MenuUI.scss | 76 | ||||
-rw-r--r-- | _scss/imports/scss/_PanelUI.scss | 1257 | ||||
-rw-r--r-- | _scss/imports/scss/_ScrollBars.scss | 158 | ||||
-rw-r--r-- | _scss/imports/scss/_Stage.scss | 194 | ||||
-rw-r--r-- | _scss/imports/scss/_Tools.scss | 487 | ||||
-rw-r--r-- | _scss/imports/scss/_ToolsSample.scss | 14 | ||||
-rw-r--r-- | _scss/imports/scss/_UserContent.scss | 10 | ||||
-rw-r--r-- | _scss/imports/scss/_mixins.scss | 20 | ||||
-rw-r--r-- | _scss/imports/scss/_toolbar.scss | 290 |
12 files changed, 3088 insertions, 0 deletions
diff --git a/_scss/imports/scss/_Base.scss b/_scss/imports/scss/_Base.scss new file mode 100644 index 00000000..f9a1cfa3 --- /dev/null +++ b/_scss/imports/scss/_Base.scss | |||
@@ -0,0 +1,211 @@ | |||
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 | /* | ||
8 | * Base.scss | ||
9 | * Base styles for entire application. | ||
10 | * Note that colors and font definitions go in | ||
11 | * _scss/themes/themename/_colors.scss and _scss/themes/themename/_fonts.scss | ||
12 | */ | ||
13 | |||
14 | .clear { | ||
15 | display: block; | ||
16 | clear: both; | ||
17 | height: 0px; | ||
18 | overflow: hidden; | ||
19 | } | ||
20 | .bold { | ||
21 | font-weight: bold; | ||
22 | } | ||
23 | :focus { | ||
24 | outline: none; | ||
25 | border: none; | ||
26 | -webkit-box-shadow: 0px 0px 1px 1px $color-focus-outline; | ||
27 | |||
28 | } | ||
29 | .layout-table { | ||
30 | display: table; | ||
31 | } | ||
32 | .layout-row { | ||
33 | display: table-row; | ||
34 | } | ||
35 | .layout-cell { | ||
36 | display: table-cell; | ||
37 | } | ||
38 | .layout-table .flexor div:first-child { | ||
39 | float: left; | ||
40 | } | ||
41 | .layout-table .flexor div:last-child { | ||
42 | float: right; | ||
43 | } | ||
44 | |||
45 | /* Begin: Basic skinning for form fields */ | ||
46 | /* Reset all */ | ||
47 | input.nj-skinned, | ||
48 | textarea.nj-skinned, | ||
49 | button.nj-skinned, | ||
50 | select.nj-skinned, | ||
51 | select.nj-skinned option, | ||
52 | button.nj-skinned { | ||
53 | -webkit-appearance: none; | ||
54 | outline: none; | ||
55 | } | ||
56 | |||
57 | /* Base styles */ | ||
58 | input[type="text"].nj-skinned, | ||
59 | input[type="password"].nj-skinned, | ||
60 | input[type="search"].nj-skinned, | ||
61 | textarea.nj-skinned, | ||
62 | select.nj-skinned, | ||
63 | select.nj-skinned option { | ||
64 | border: 1px solid $color-input-border; | ||
65 | color: $color-input; | ||
66 | background-color: $color-input-bg; | ||
67 | font-size: 12px; | ||
68 | font-family: 'Droid Sans', sans-serif; | ||
69 | } | ||
70 | |||
71 | /* Disabled styles */ | ||
72 | input.nj-skinned:disabled, | ||
73 | textarea.nj-skinned:disabled, | ||
74 | select.nj-skinned:disabled, | ||
75 | button.nj-skinned:disabled { | ||
76 | opacity: 0.4; | ||
77 | } | ||
78 | |||
79 | /* Text inputs and select boxes */ | ||
80 | input[type="text"].nj-skinned, | ||
81 | input[type="password"].nj-skinned, | ||
82 | input[type="search"].nj-skinned, | ||
83 | select.nj-skinned, | ||
84 | select.nj-skinned option { | ||
85 | height: 13px; | ||
86 | } | ||
87 | /* | ||
88 | input[type="text"].nj-skinned:focus, | ||
89 | input[type="password"].nj-skinned:focus, | ||
90 | input[type="search"].nj-skinned:focus, | ||
91 | textarea.nj-skinned:focus, | ||
92 | select.nj-skinned:focus, | ||
93 | select.nj-skinned option:focus { | ||
94 | -webkit-box-shadow: 0px 0px 3px $color-focus-outline; | ||
95 | } | ||
96 | */ | ||
97 | |||
98 | select.nj-skinned { | ||
99 | background-image: url("../images/dropdown-bg.png"); | ||
100 | background-repeat: no-repeat; | ||
101 | background-position: right center; | ||
102 | font-size: 12px; | ||
103 | height: 16px; | ||
104 | padding-right: 20px; | ||
105 | } | ||
106 | |||
107 | input[type="search"].nj-skinned { | ||
108 | height: 17px ; | ||
109 | -webkit-box-shadow: none; | ||
110 | } | ||
111 | input[type="search"].nj-skinned::-webkit-search-cancel-button { | ||
112 | -webkit-appearance: none; | ||
113 | font-size: 10px; | ||
114 | height: 10px; | ||
115 | width: 10px; | ||
116 | } | ||
117 | input[type="search"].nj-skinned::-webkit-search-cancel-button:after { | ||
118 | content:"\2716"; | ||
119 | } | ||
120 | |||
121 | /* Buttons */ | ||
122 | button.nj-skinned { | ||
123 | font-size: 9px; | ||
124 | cursor: pointer; | ||
125 | } | ||
126 | |||
127 | /* Radio buttons */ | ||
128 | input[type="radio"].nj-skinned { | ||
129 | background-color: $color-menu-bg; | ||
130 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-top 0%, $color-radio-gradient-bottom 100%); | ||
131 | color: $color-radio; | ||
132 | border: 2px solid $color-radio-border; | ||
133 | width: 12px; | ||
134 | height: 12px; | ||
135 | overflow: hidden; | ||
136 | border-radius: 10px; | ||
137 | font-size: 16px; | ||
138 | line-height: 7px; | ||
139 | text-indent: -7px; | ||
140 | cursor: pointer; | ||
141 | -webkit-box-shadow: 0px 0px 2px $color-radio-shadow; | ||
142 | -moz-box-shadow: 0px 0px 2px $color-radio-shadow; | ||
143 | box-shadow: 0px 0px 2px $color-radio-shadow; | ||
144 | } | ||
145 | input[type="radio"].nj-skinned:checked { | ||
146 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-top 0%, $color-radio-gradient-bottom 100%); | ||
147 | border: 2px solid $color-radio-border; | ||
148 | } | ||
149 | input[type="radio"].nj-skinned:hover { | ||
150 | border: 2px solid $color-radio-border; | ||
151 | } | ||
152 | input[type="radio"].nj-skinned:checked:after { | ||
153 | content:"\a0 \a0 \2022"; | ||
154 | } | ||
155 | input[type="radio"].nj-skinned:active { | ||
156 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-bottom 0%, $color-radio-gradient-top 100%); | ||
157 | } | ||
158 | input[type="radio"].nj-skinned:disabled { | ||
159 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-top 0%, $color-radio-gradient-bottom 100%); | ||
160 | border: 2px solid $color-radio-border; | ||
161 | cursor: default; | ||
162 | } | ||
163 | /* Checkboxes */ | ||
164 | input[type="checkbox"].nj-skinned { | ||
165 | background-color: $color-menu-bg; | ||
166 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-top 0%, $color-radio-gradient-bottom 100%); | ||
167 | color: $color-radio; | ||
168 | border: 1px solid $color-radio-border; | ||
169 | width: 10px; | ||
170 | height: 10px; | ||
171 | font-size: 12px; | ||
172 | overflow: visible; | ||
173 | cursor: pointer; | ||
174 | -webkit-box-shadow: 0px 0px 2px $color-radio-shadow; | ||
175 | -moz-box-shadow: 0px 0px 2px $color-radio-shadow; | ||
176 | box-shadow: 0px 0px 2px $color-radio-shadow; | ||
177 | line-height: 9px; | ||
178 | } | ||
179 | |||
180 | input[type="checkbox"].nj-skinned:checked { | ||
181 | |||
182 | } | ||
183 | input[type="checkbox"].nj-skinned:checked:after { | ||
184 | content:"\2714"; | ||
185 | } | ||
186 | input[type="checkbox"].nj-skinned:active { | ||
187 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-bottom 0%, $color-radio-gradient-top 100%); | ||
188 | } | ||
189 | input[type="checkbox"].nj-skinned:disabled { | ||
190 | background-image: -webkit-linear-gradient(top, $color-radio-gradient-top 0%, $color-radio-gradient-bottom 100%); | ||
191 | cursor: default; | ||
192 | } | ||
193 | /* End: Basic skinning for form fields */ | ||
194 | |||
195 | /* Begin: Basic skinning for visual dividers */ | ||
196 | .nj-divider { | ||
197 | background-color: $color-divider-second; | ||
198 | border-width: 0px; | ||
199 | overflow: hidden; | ||
200 | } | ||
201 | .nj-divider.divider-horizontal { | ||
202 | border-top: 1px solid $color-divider-first; | ||
203 | border-bottom: 1px solid $color-divider-third; | ||
204 | height: 1px; | ||
205 | } | ||
206 | .nj-divider.divider-vertical { | ||
207 | border-left: 1px solid $color-divider-first; | ||
208 | border-right: 1px solid $color-divider-third; | ||
209 | width: 1px; | ||
210 | } | ||
211 | /* End: Basic skinning for visual dividers */ | ||
diff --git a/_scss/imports/scss/_Components.scss b/_scss/imports/scss/_Components.scss new file mode 100644 index 00000000..2fda5afc --- /dev/null +++ b/_scss/imports/scss/_Components.scss | |||
@@ -0,0 +1,33 @@ | |||
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 | |||
8 | |||
9 | /* Begin: Styles for the Tree component */ | ||
10 | |||
11 | .tree | ||
12 | { | ||
13 | -webkit-user-select:none; | ||
14 | cursor:default; | ||
15 | float: left; | ||