diff options
author | Eric Guzman | 2012-02-13 10:29:49 -0800 |
---|---|---|
committer | Eric Guzman | 2012-02-13 10:29:49 -0800 |
commit | e4893f7d3c3b9bd7967973197c3ffb5d3a075c91 (patch) | |
tree | f3d4fd9d96ba0dcf846fbf66153fb443bd60f767 /js/panels/Timeline/Style.reel/scss/Style.scss | |
parent | ef032412216d437ce1c7dfc9050ab41adf0594c0 (diff) | |
parent | e142611e22718b1f1d1696902ad9161ec5f33f98 (diff) | |
download | ninja-e4893f7d3c3b9bd7967973197c3ffb5d3a075c91.tar.gz |
Merge branch 'refs/heads/master' into TreeComponents
Diffstat (limited to 'js/panels/Timeline/Style.reel/scss/Style.scss')
-rw-r--r-- | js/panels/Timeline/Style.reel/scss/Style.scss | 70 |
1 files changed, 70 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..f15f553d --- /dev/null +++ b/js/panels/Timeline/Style.reel/scss/Style.scss | |||
@@ -0,0 +1,70 @@ | |||
1 | /* Layer.scss | ||
2 | * Main SCSS file for Layer component, compiled by SASS into the file css/Layer.css. | ||
3 | */ | ||
4 | |||
5 | // Import theme settings | ||
6 | @import "../../../../../_scss/imports/themes/default/colors"; | ||
7 | @import "../../../../../_scss/imports/themes/default/mixins"; | ||
8 | |||
9 | // Import generic mixins and styles | ||
10 | @import "../../../../../_scss/imports/scss/mixins"; | ||
11 | |||
12 | .hidden { | ||
13 | display: none; | ||
14 | } | ||
15 | .row-editor { | ||
16 | position: relative; | ||
17 | height: 14px; | ||
18 | } | ||
19 | .style-padding { | ||
20 | padding-left: 5px; | ||
21 | padding-top: 3px; | ||
22 | padding-right: 5px; | ||
23 | } | ||
24 | .style-row { | ||
25 | height: 20px; | ||
26 | border-bottom: 1px solid $color-menu-divider; | ||
27 | } | ||
28 | |||
29 | div.content-style div.editable2 { | ||
30 | height: 14px; | ||
31 | background-color: $color-panel-hilite-text !IMPORTANT; | ||
32 | color: $color-panel-hilite-bg !IMPORTANT; | ||
33 | border-width: 0px; | ||
34 | font-size: 11px; | ||
35 | overflow: hidden; | ||
36 | -webkit-user-select: text; | ||
37 | white-space: nowrap; | ||
38 | text-overflow: clip; | ||
39 | width: 100%; | ||
40 | } | ||
41 | .content-style.collapsible-content, | ||
42 | .content-style.collapsible-content div, | ||
43 | .content-style.collapsible-content span { | ||
44 | overflow: visible; | ||
45 | text-overflow: visible; | ||
46 | } | ||
47 | div.content-style div.cell-property, | ||
48 | div.content-style div.cell-value { | ||
49 | width: 45%; | ||
50 | float: left; | ||
51 | height: 18px; | ||
52 | overflow: hidden; | ||
53 | text-overflow: ellipsis; | ||
54 | white-space: nowrap; | ||
55 | line-height: 18px; | ||
56 | } | ||
57 | div.content-style div.cell-property div { | ||
58 | min-width: 90%; | ||
59 | height: 100%; | ||
60 | overflow: hidden; | ||
61 | text-overflow: ellipsis; | ||
62 | white-space: nowrap; | ||
63 | } | ||
64 | |||
65 | div.content-style input.nj-skinned { | ||
66 | height: 10px; | ||
67 | font-size: 12px; | ||
68 | top: -3px; | ||
69 | } | ||
70 | |||