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/presets/content.reel/content.css | |
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/presets/content.reel/content.css')
-rw-r--r-- | js/panels/presets/content.reel/content.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/js/panels/presets/content.reel/content.css b/js/panels/presets/content.reel/content.css new file mode 100644 index 00000000..c0ccbad4 --- /dev/null +++ b/js/panels/presets/content.reel/content.css | |||
@@ -0,0 +1,58 @@ | |||
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 | .presetsPanel { | ||
8 | display: -webkit-box; | ||
9 | text-shadow: 1px 1px 1px #000; | ||
10 | -webkit-box-orient: vertical; | ||
11 | -webkit-box-flex: 1; | ||
12 | } | ||
13 | .presetsPanel .treeRoot { | ||
14 | margin: 0 8px; | ||
15 | } | ||
16 | .tab-bar { | ||
17 | -webkit-box-flex: 0; | ||
18 | background-color: #282828; | ||
19 | color: #FFF; | ||
20 | display: -webkit-box; | ||
21 | font-size: 12px; | ||
22 | -webkit-box-orient: horizontal; | ||
23 | } | ||
24 | |||
25 | .tab-bar div { | ||
26 | -webkit-box-flex: 0; | ||
27 | border-top-right-radius: 2px; | ||
28 | border-top-left-radius: 2px; | ||
29 | background-color: #474747; | ||
30 | background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.2) 0,rgba(0,0,0,0) 3px); | ||
31 | border-top: 1px solid rgb(100, 100, 100); | ||
32 | border-left: 1px solid rgba(100, 100, 100, 0.3); | ||
33 | border-right: 1px solid rgba(100, 100, 100, 0.3); | ||
34 | padding: 4px 9px; | ||
35 | cursor: pointer; | ||
36 | opacity: 0.6; | ||
37 | white-space: nowrap; | ||
38 | text-overflow: ellipsis; | ||
39 | overflow: hidden; | ||
40 | position: relative; | ||
41 | z-index: 999; | ||
42 | } | ||
43 | .tab-bar div.active-tab { | ||
44 | background-image: none; | ||
45 | box-shadow: 0 -5px 2px 3px rgba(0,0,0,0.2); | ||
46 | position: relative; | ||
47 | opacity: 1; | ||
48 | text-overflow: clip; | ||
49 | z-index: 1001; | ||
50 | } | ||
51 | |||
52 | .librarySlot { | ||
53 | -webkit-box-flex: 1; | ||
54 | overflow: auto; | ||
55 | background-color: #474747; | ||
56 | position: relative; | ||
57 | z-index: 1000; | ||
58 | } \ No newline at end of file | ||