diff options
author | Valerio Virgillito | 2012-05-03 23:01:31 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-03 23:01:31 -0700 |
commit | 60388a7d01d9e34b5cd15bd5cb190a610e4f9a0e (patch) | |
tree | 9bfa4cc0fdb3a39abf151c05d013f2cde7aad296 /js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css | |
parent | dca94d9d1e2a6a113356b685df991472ea3e5576 (diff) | |
parent | fec9ccee11ea21ffc95edce6e89d0d302b63e3d8 (diff) | |
download | ninja-60388a7d01d9e34b5cd15bd5cb190a610e4f9a0e.tar.gz |
Merge branch 'refs/heads/master' into tag-2.0
Diffstat (limited to 'js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css')
-rw-r--r-- | js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css new file mode 100644 index 00000000..6130382b --- /dev/null +++ b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css | |||
@@ -0,0 +1,112 @@ | |||
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 | .viewOptions{ | ||
8 | color:#F7F7F7; | ||
9 | font-size:12px; | ||
10 | } | ||
11 | |||
12 | .viewOptions div{ | ||
13 | display:inline; | ||
14 | } | ||
15 | |||
16 | .viewOptions .autoCodeComplete{ | ||
17 | float:left; | ||
18 | height: 20px; | ||
19 | } | ||
20 | |||
21 | .viewOptions .autoCodeComplete span{ | ||
22 | vertical-align: middle; | ||
23 | } | ||
24 | |||
25 | .viewOptions .autoCodeComplete .disabled{ | ||
26 | color:#515151; | ||
27 | } | ||
28 | |||
29 | .viewOptions .floatButtons{ | ||
30 | float:left; | ||
31 | font-size:9px; | ||
32 | padding-left: 20px; | ||
33 | } | ||
34 | |||
35 | .viewOptions .format{ | ||
36 | float:left; | ||
37 | margin-left:5px; | ||
38 | height: 20px; | ||
39 | } | ||
40 | |||
41 | .viewOptions .themeOptions{ | ||
42 | float: right; | ||
43 | margin-right:5px; | ||
44 | } | ||
45 | |||
46 | .viewOptions .themeOptions select{ | ||
47 | background-color: #616161; | ||
48 | color: white; | ||
49 | font-size:9px; | ||
50 | margin-top:2px; | ||
51 | border-color: #616161; | ||
52 | } | ||
53 | |||
54 | .viewOptions .themeOptions select option{ | ||
55 | background-color: #616161; | ||
56 | color: white; | ||
57 | border-color: #616161; | ||
58 | } | ||
59 | |||
60 | .viewOptions .shortKeys{ | ||
61 | float: right; | ||
62 | margin-right:30px; | ||
63 | border: 1px solid #616161; | ||
64 | border-radius: 6px; | ||
65 | padding-left: 5px; | ||
66 | padding-right: 5px; | ||
67 | cursor:pointer; | ||
68 | position:relative; | ||
69 | } | ||
70 | |||
71 | .viewOptions .shortKeys .dropdownArrow{ | ||
72 | font-size: 0.7em; | ||
73 | color:#d1d1d1; | ||
74 | } | ||
75 | |||
76 | .viewOptions .shortKeys .list{ | ||
77 | position:absolute; | ||
78 | border: 1px solid #616161; | ||
79 | bottom: 16px; | ||
80 | left: -2px; | ||
81 | opacity: 1; | ||
82 | white-space: nowrap; | ||
83 | padding:5px; | ||
84 | background-color: #313131; | ||
85 | width:200px; | ||
86 | cursor: text; | ||
87 | } | ||
88 | |||
89 | .viewOptions .shortKeys .list div{ | ||
90 | display: block; | ||
91 | } | ||
92 | |||
93 | .viewOptions .shortKeys .hide{ | ||
94 | visibility: hidden; | ||
95 | } | ||
96 | |||
97 | .viewOptions .shortKeys .show{ | ||
98 | visibility: visible; | ||
99 | } | ||
100 | |||
101 | .viewOptions .shortKeys div{ | ||
102 | padding:2px; | ||
103 | } | ||
104 | |||
105 | .viewOptions .shortKey{ | ||
106 | font-style: italic; | ||
107 | color: #d1d1d1; | ||
108 | } | ||
109 | |||
110 | .viewOptions .shortKeyDesc{ | ||
111 | float:right; | ||
112 | } \ No newline at end of file | ||