diff options
author | Pushkar Joshi | 2012-02-24 12:08:49 -0800 |
---|---|---|
committer | Pushkar Joshi | 2012-02-24 12:08:49 -0800 |
commit | 03ca7a5ed13c25faaa9100bb666e062fd15335e6 (patch) | |
tree | c51112223ceb9121cd595a60335eb2795215590f /js/panels/Timeline/Style.reel/scss | |
parent | fcb12cc09eb3cd3b42bd215877ba18f449275b75 (diff) | |
parent | 053fc63a2950c7a5ee4ebf98033b64d474a3c46e (diff) | |
download | ninja-03ca7a5ed13c25faaa9100bb666e062fd15335e6.tar.gz |
Merge branch 'pentool' into brushtool
Conflicts:
imports/codemirror/mode/scheme/scheme.js
js/tools/BrushTool.js
Diffstat (limited to 'js/panels/Timeline/Style.reel/scss')
-rw-r--r-- | js/panels/Timeline/Style.reel/scss/Style.scss | 76 | ||||
-rw-r--r-- | js/panels/Timeline/Style.reel/scss/config.rb | 9 |
2 files changed, 85 insertions, 0 deletions
diff --git a/js/panels/Timeline/Style.reel/scss/Style.scss b/js/panels/Timeline/Style.reel/scss/Style.scss new file mode 100644 index 00000000..30bf43fe --- /dev/null +++ b/js/panels/Timeline/Style.reel/scss/Style.scss | |||
@@ -0,0 +1,76 @@ | |||
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 | /* Layer.scss | ||
8 | * Main SCSS file for Layer component, compiled by SASS into the file css/Layer.css. | ||
9 | */ | ||
10 | |||
11 | // Import theme settings | ||
12 | @import "../../../../../scss/imports/themes/default/colors"; | ||
13 | @import "../../../../../scss/imports/themes/default/mixins"; | ||
14 | |||
15 | // Import generic mixins and styles | ||
16 | @import "../../../../../scss/imports/scss/mixins"; | ||
17 | |||
18 | .hidden { | ||
19 | display: none; | ||
20 | } | ||
21 | .row-editor { | ||
22 | position: relative; | ||
23 | height: 14px; | ||
24 | } | ||
25 | .style-padding { | ||
26 | padding-left: 5px; | ||
27 | padding-top: 3px; | ||
28 | padding-right: 5px; | ||
29 | } | ||
30 | .style-row { | ||
31 | height: 20px; | ||
32 | border-bottom: 1px solid $color-menu-divider; | ||
33 | } | ||
34 | |||
35 | div.content-style div.editable2 { | ||
36 | height: 14px; | ||
37 | background-color: $color-panel-hilite-text !IMPORTANT; | ||
38 | color: $color-panel-hilite-bg !IMPORTANT; | ||
39 | border-width: 0px; | ||
40 | font-size: 11px; | ||
41 | overflow: hidden; | ||
42 | -webkit-user-select: text; | ||
43 | white-space: nowrap; | ||
44 | text-overflow: clip; | ||
45 | width: 100%; | ||
46 | } | ||
47 | .content-style.collapsible-content, | ||
48 | .content-style.collapsible-content div, | ||
49 | .content-style.collapsible-content span { | ||
50 | overflow: visible; | ||
51 | text-overflow: visible; | ||
52 | } | ||
53 | div.content-style div.cell-property, | ||
54 | div.content-style div.cell-value { | ||
55 | width: 45%; | ||
56 | float: left; | ||
57 | height: 18px; | ||
58 | overflow: hidden; | ||
59 | text-overflow: ellipsis; | ||
60 | white-space: nowrap; | ||
61 | line-height: 18px; | ||
62 | } | ||
63 | div.content-style div.cell-property div { | ||
64 | min-width: 90%; | ||
65 | height: 100%; | ||
66 | overflow: hidden; | ||
67 | text-overflow: ellipsis; | ||
68 | white-space: nowrap; | ||
69 | } | ||
70 | |||
71 | div.content-style input.nj-skinned { | ||
72 | height: 10px; | ||
73 | font-size: 12px; | ||
74 | top: -3px; | ||
75 | } | ||
76 | |||
diff --git a/js/panels/Timeline/Style.reel/scss/config.rb b/js/panels/Timeline/Style.reel/scss/config.rb new file mode 100644 index 00000000..e5a99b70 --- /dev/null +++ b/js/panels/Timeline/Style.reel/scss/config.rb | |||
@@ -0,0 +1,9 @@ | |||
1 | # Require any additional compass plugins here. | ||
2 | # Set this to the root of your project when deployed: | ||
3 | http_path = "/" | ||
4 | css_dir = "../css" | ||
5 | sass_dir = "" | ||
6 | images_dir = "../images/" | ||
7 | javascripts_dir = "../js" | ||
8 | # To enable relative paths to assets via compass helper functions. Uncomment: | ||
9 | # relative_assets = true | ||