diff options
Diffstat (limited to 'scss/imports/themes/_test.scss')
-rw-r--r-- | scss/imports/themes/_test.scss | 55 |
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 | ||