diff options
Diffstat (limited to 'js/panels/css-panel/style-sheet.reel/style-sheet.css')
-rw-r--r-- | js/panels/css-panel/style-sheet.reel/style-sheet.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/js/panels/css-panel/style-sheet.reel/style-sheet.css b/js/panels/css-panel/style-sheet.reel/style-sheet.css index e69de29b..41c5ab12 100644 --- a/js/panels/css-panel/style-sheet.reel/style-sheet.css +++ b/js/panels/css-panel/style-sheet.reel/style-sheet.css | |||
@@ -0,0 +1,49 @@ | |||
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 | .style-sheet-container { | ||
7 | border-bottom: 1px solid #505050; | ||
8 | display: -webkit-box; | ||
9 | -webkit-box-orient: horizontal; | ||
10 | padding: 4px 0 3px; | ||
11 | white-space: nowrap; | ||
12 | } | ||
13 | .style-sheet-container > * { | ||
14 | -webkit-box-flex: 1; | ||
15 | display:-webkit-box; | ||
16 | } | ||
17 | .style-sheet-container input[type="checkbox"] { | ||
18 | margin-right: 8px; | ||
19 | position: relative; | ||
20 | -webkit-box-flex: 0; | ||
21 | } | ||
22 | .style-sheet-container span { | ||
23 | min-width: 50px; | ||
24 | overflow: hidden; | ||
25 | padding: 2px 0; | ||
26 | text-overflow: ellipsis; | ||
27 | white-space: nowrap; | ||
28 | } | ||
29 | .style-sheet-container label { | ||
30 | -webkit-box-flex: 0; | ||
31 | margin: 0 5px; | ||
32 | padding: 2px 0; | ||
33 | } | ||
34 | .style-sheet-container input[type="text"] { | ||
35 | min-width: 30px; | ||
36 | } | ||
37 | .style-sheet-container button { | ||
38 | background: none; | ||
39 | color: #FFF; | ||
40 | cursor: pointer; | ||
41 | } | ||
42 | .style-sheet-container button:after { | ||
43 | content: "\2716"; | ||
44 | opacity: 0.7; | ||
45 | } | ||
46 | |||
47 | .style-sheet-container button:hover:after { | ||
48 | opacity: 1; | ||
49 | } \ No newline at end of file | ||