]> git.gir.st - VimFx.git/blob - extension/resources/style.css
Merge branch 'develop' into better-hintmarkers
[VimFx.git] / extension / resources / style.css
1 /* Copied over from vimium project */
2 .VimFxReset {
3 background: none !important;
4 border: none !important;
5 /*bottom: auto !important;*/
6 box-shadow: none !important;
7 color: WindowText !important;
8 cursor: auto !important;
9 display: inline !important;
10 float: none !important;
11 font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans" !important;
12 font-size: inherit !important;
13 font-style: normal !important;
14 font-variant: normal !important;
15 font-weight: normal !important;
16 height: auto !important;
17 /*left: auto !important;*/
18 letter-spacing: 0 !important;
19 line-height: 100% !important;
20 margin: 0 !important;
21 max-height: none !important;
22 max-width: none !important;
23 min-height: 0 !important;
24 min-width: 0 !important;
25 opacity: 1 !important;
26 outline: none !important;
27 padding: 0 !important;
28 position: static !important;
29 /*right: auto !important;*/
30 text-align: left !important;
31 text-decoration: none !important;
32 text-indent: 0 !important;
33 text-shadow: none !important;
34 text-transform: none !important;
35 /*top: auto !important;*/
36 vertical-align: baseline !important;
37 white-space: normal !important;
38 width: auto !important;
39 float: none !important;
40 }
41 .VimFxReset::before,
42 .VimFxReset::after {
43 content: none !important;
44 }
45
46 /* Markers */
47
48 .VimFxHintMarker {
49 position: absolute !important;
50 display: block !important;
51 white-space: nowrap !important;
52 overflow: hidden !important;
53 font-size: 12px !important;
54 padding: 1px 2px 0 2px !important;
55 box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.3) !important;
56 background-color: #FFD76E !important;
57 border: solid 1px #AD810C !important;
58 border-radius: 2px !important;
59 }
60
61 .VimFxHintMarker > span {
62 color: #302505 !important;
63 font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans" !important;
64 font-weight: bold !important;
65 font-size: 12px !important;
66 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) !important;
67 }
68
69 .VimFxHintMarker > span.VimFxCharMatch {
70 color: #ffa22a !important;
71 }
72
73 .VimFxHintMarker.VimFxHiddenHintMarker {
74 display: none !important;
75 }
76
77 .VimFxNoBorderRadius {
78 border-radius: 0 !important;
79 /* `transition` is reset here to make sure that the above declaration
80 * takes effect immediately. */
81 transition: none !important;
82 }
83
84 /* Help Dialog */
85
86 div#VimFxHelpDialog {
87 opacity: 0.92 !important;
88 background-color: Window !important;
89 position: fixed !important;
90 /* See mode-hints/hints.coffee for where the z-index value comes from. */
91 z-index: 2147480000 !important;
92 border-radius: 3px !important;
93 padding: 15px 30px !important;
94 width: 700px !important;
95 left: 50% !important;
96 /* This needs to be 1/2 width to horizontally center the help dialog */
97 margin-left: -380px !important;
98 top: 30px !important;
99 box-shadow: rgba(1, 2, 1, 0.4) 0px 0px 6px !important;
100 overflow-y: auto !important;
101 font-size: 15px !important;
102 max-height: 80% !important;
103 }
104
105 div#VimFxHelpDialog .VimFxTitle {
106 font-size: 30px !important;
107 line-height: 130% !important;
108 display: block !important;
109 float: left !important;
110 }
111
112 div#VimFxHelpDialog .VimFxClearFix {
113 clear: both !important;
114 float: none !important;
115 display: block !important;
116 visibility: hidden !important;
117 height: 0 !important;
118 }
119
120 div#VimFxHelpDialog .VimFxTitleVim {
121 color: darkgreen !important;
122 }
123
124 div#VimFxHelpDialog .VimFxTitleFx {
125 color: darkred !important;
126 }
127
128 div#VimFxHelpDialog .VimFxVersion {
129 float: right !important;
130 position: absolute !important;
131 top: 20px !important;
132 right: 100px !important;
133 font-size: 12px !important;
134 }
135
136 div#VimFxHelpDialog .VimFxClose {
137 float: right !important;
138 font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans" !important;
139 position: absolute !important;
140 right: 20px !important;
141 top: 20px !important;
142 font-size: 20px !important;
143 cursor: pointer !important;
144 }
145
146 div#VimFxHelpDialog .VimFxColumn {
147 width: 46% !important;
148 margin: 0 0 0 8% !important;
149 float: left !important;
150 margin-bottom: 10px !important;
151 }
152
153 div#VimFxHelpDialog .VimFxColumn:first-child {
154 margin: 0 !important;
155 }
156
157 div#VimFxHelpDialog .VimFxSectionTitle {
158 display: block !important;
159 font-size: 15px !important;
160 font-weight: bold !important;
161 line-height: 140% !important;
162 text-transform: uppercase !important;
163 margin: 30px 0 10px 0 !important;
164
165 }
166
167 div#VimFxHelpDialog table.VimFxReset {
168 display: table !important;
169 table-layout: fixed !important;
170 }
171
172 div#VimFxHelpDialog tr.VimFxReset {
173 display: table-row !important;
174 }
175
176 div#VimFxHelpDialog td.VimFxReset {
177 display: table-cell !important;
178 padding-top: 2px !important;
179 padding-bottom: 4px !important;
180 line-height: 15px !important;
181 }
182
183 div.VimFxKeySequence {
184 max-width: 70px !important;
185 text-align: right !important;
186 font-weight: bold !important;
187 color: #2f508e !important;
188 white-space: nowrap !important;
189 }
190
191 a.VimFxKeyLink {
192 display: inline !important;
193 background: #777 !important;
194 border: none !important;
195 color: #fff !important;
196 cursor: pointer !important;
197 font-weight: bold !important;
198 border-radius: 3px !important;
199 text-shadow: 1px 1px #666 !important;
200 font-size: 75% !important;
201 padding: 2px 3px !important;
202 }
203
204 a.VimFxKeyLink:hover {
205 outline: 3px solid #c55500 !important;
206 -moz-outline-radius: 6px !important;
207 background: #c55500 !important;
208 border-radius: 0px !important;
209 text-decoration: none !important;
210 }
211
212 a.VimFxAddShortcutLink {
213 color: #c55500 !important;
214 cursor: pointer !important;
215 margin-left: 2px !important;
216 }
217
218 div#VimFxHelpDialog .VimFxFooter {
219 float: left !important;
220 margin-top: 30px !important;
221 font-size: 12px !important;
222 }
223
224 div#VimFxHelpDialog .VimFxFooter p {
225 display: block !important;
226 line-height: 150% !important;
227 margin-bottom: 5px !important;
228 }
229
230 div#VimFxHelpDialog .VimFxFooter a {
231 text-decoration: underline !important;
232 color: darkblue !important;
233 cursor: pointer !important;
234 }
235
236 div#VimFxHelpDialog span.VimFxDot {
237 color: #818181 !important;
238 }
Imprint / Impressum