aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Style.reel/css
diff options
context:
space:
mode:
authorJonathan Duran2012-02-06 13:30:49 -0800
committerJonathan Duran2012-02-06 13:30:49 -0800
commita39bad832722a10f6556f91e94c3301a41f59bd5 (patch)
treee436e919f9f67c56e8bce462aab95ff3804813cc /js/panels/Timeline/Style.reel/css
parent671a27069db6a121507c2b342653aede685cff67 (diff)
downloadninja-a39bad832722a10f6556f91e94c3301a41f59bd5.tar.gz
merge new timeline
Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/panels/Timeline/Style.reel/css')
-rw-r--r--js/panels/Timeline/Style.reel/css/Style.css133
1 files changed, 133 insertions, 0 deletions
diff --git a/js/panels/Timeline/Style.reel/css/Style.css b/js/panels/Timeline/Style.reel/css/Style.css
new file mode 100644
index 00000000..6c7542cb
--- /dev/null
+++ b/js/panels/Timeline/Style.reel/css/Style.css
@@ -0,0 +1,133 @@
1/* Layer.scss
2 * Main SCSS file for Layer component, compiled by SASS into the file css/Layer.css.
3 */
4/* <copyright>
5 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
6 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
7 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
8 </copyright> */
9/*
10 * _colors.scss
11 * Defines the colors for the UI of the application.
12 * To create a new theme, copy this file and change the values as desired.
13 * Note: Some colors are defined as both rgb and rgba; some of the rgba versions have multiple a values.
14 */
15/* Colors for radio buttons and other form elements */
16/* Base colors for dividers
17 *
18 * Dividers consist of a div with a background color and either
19 * a top & bottom border (in the case of horizontal dividers)
20 * or a left & right border (in the case of vertical dividers),
21 * for a total of three different colors.
22 *
23 */
24/* top and left */
25/* Middle */
26/* Bottom and right */
27/* Main background color of entire app */
28/* Main app background color. */
29/* rgba version */
30/* Main app border color */
31/* color of drop shadows */
32/* Stage color */
33/* body border color */
34/* Body background color */
35/* Colors for main dropdown menus: background & text for both regular and highlighted states, dividers */
36/* Colors for tools: background, text, how they interact with the UI */
37/* Colors for panels: background & text, both regular and highlighted states, dividers, borders, shadows, etc. */
38/* used for editable items in their non-edit state, etc. */
39/* Border for panel and for block elements */
40/* Shadow for text and block elements */
41/* Colors for scroll bars */
42/* <copyright>
43 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
44 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
45 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
46 </copyright> */
47/*
48 * themes/themename/mixins.scss
49 * Mixins that are theme-dependent (e.g. sprite mixins, etc)
50 */
51/* <copyright>
52 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
53 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
54 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
55 </copyright> */
56/*
57 * mixins.scss
58 * Generic mixins. Theme-specific mixins (e.g. for sprites)
59 * should go in the theme/themename/mixins.scss file.
60 */
61/* line 12, ../scss/Style.scss */
62.hidden {
63 display: none;
64}
65
66/* line 15, ../scss/Style.scss */
67.row-editor {
68 position: relative;
69 height: 14px;
70}
71
72/* line 19, ../scss/Style.scss */
73.style-padding {
74 padding-left: 5px;
75 padding-top: 3px;
76 padding-right: 5px;
77}
78
79/* line 24, ../scss/Style.scss */
80.style-row {
81 height: 20px;
82 border-bottom: 1px solid #505050;
83}
84
85/* line 29, ../scss/Style.scss */
86div.content-style div.editable2 {
87 height: 14px;
88 background-color: #242424 !important;
89 color: #b2b2b2 !important;
90 border-width: 0px;
91 font-size: 11px;
92 overflow: hidden;
93 -webkit-user-select: text;
94 white-space: nowrap;
95 text-overflow: clip;
96 width: 100%;
97}
98
99/* line 43, ../scss/Style.scss */
100.content-style.collapsible-content,
101.content-style.collapsible-content div,
102.content-style.collapsible-content span {
103 overflow: visible;
104 text-overflow: visible;
105}
106
107/* line 48, ../scss/Style.scss */
108div.content-style div.cell-property,
109div.content-style div.cell-value {
110 width: 45%;
111 float: left;
112 height: 18px;
113 overflow: hidden;
114 text-overflow: ellipsis;
115 white-space: nowrap;
116 line-height: 18px;
117}
118
119/* line 57, ../scss/Style.scss */
120div.content-style div.cell-property div {
121 min-width: 90%;
122 height: 100%;
123 overflow: hidden;
124 text-overflow: ellipsis;
125 white-space: nowrap;
126}
127
128/* line 65, ../scss/Style.scss */
129div.content-style input.nj-skinned {
130 height: 10px;
131 font-size: 12px;
132 top: -3px;
133}