aboutsummaryrefslogtreecommitdiff
path: root/scss/imports/themes/_test.scss
diff options
context:
space:
mode:
authorArmen Kesablyan2012-02-13 11:59:19 -0800
committerArmen Kesablyan2012-02-13 11:59:19 -0800
commit90d0c8c0e98d062c628c061fe5765ce991fda409 (patch)
tree9780e9dcf475bf319f3cacc1a1ad52fcf9f133af /scss/imports/themes/_test.scss
parent8110e01dc5093ac6baf621103dcaa5f769e5be92 (diff)
parente142611e22718b1f1d1696902ad9161ec5f33f98 (diff)
downloadninja-90d0c8c0e98d062c628c061fe5765ce991fda409.tar.gz
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal
Conflicts: css/ninja.css js/stage/stage.reel/stage.html js/tools/TextTool.js node_modules/labs/rich-text-editor.reel/rich-text-editor.css node_modules/labs/rich-text-editor.reel/rich-text-editor.html node_modules/labs/rich-text-editor.reel/rich-text-editor.js node_modules/labs/rich-text-editor.reel/rich-text-resizer.js node_modules/labs/rich-text-editor.reel/rich-text-sanitizer.js Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'scss/imports/themes/_test.scss')
-rw-r--r--scss/imports/themes/_test.scss55
1 files changed, 55 insertions, 0 deletions
diff --git a/scss/imports/themes/_test.scss b/scss/imports/themes/_test.scss
new file mode 100644
index 00000000..87735bec
--- /dev/null
+++ b/scss/imports/themes/_test.scss
@@ -0,0 +1,55 @@
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/* extra theme for use when developing the layouts so we can color items to discern them */
8.applicationBodyBackground {
9 background: blue;
10}
11
12.menuBar {
13 color: rgba(192,192,192,1);
14 background: black;
15}
16
17.docAreaBackground {
18 color: black;
19 background: black;
20}
21
22.mainStageBackground {
23 color: white;
24 background: gray;
25}
26
27.stageContentShadow {
28 -webkit-box-shadow: 3px 5px 4px rgba(0,0,0,.5);
29 -moz-box-shadow: 3px 5px 4px rgba(0,0,0,.5);
30 box-shadow: 3px 5px 4px rgba(0,0,0,.5);
31}
32
33.panelBackground {
34 color: white;
35 /*border: solid 1px #333;*/
36 background: rgba(41,41,41,1);
37}
38
39.panelCollapseControlBackground {
40 background: green;
41}
42
43.panelCollapseArrowFill {
44 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 */
45}
46
47.docAreaBorder {
48 border: solid 1px rgba(51,51,51,1);
49 padding: 1px;
50}
51
52.panelContent {
53 background: rgba(62,62,62,1);
54 border: solid 1px black;
55} \ No newline at end of file