OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
6 <link rel="icon" href="../../app/theme/downloads_favicon.png"> | 6 <link rel="icon" href="../../app/theme/downloads_favicon.png"> |
7 <link rel="stylesheet" href="old_webui.css"> | |
7 <style> | 8 <style> |
8 body { | |
9 background-color: white; | |
10 color: black; | |
11 margin: 10px; | |
12 } | |
13 | |
14 .header { | |
15 overflow: auto; | |
16 clear: both; | |
17 } | |
18 | |
19 .header .logo { | |
20 float: left; | |
21 } | |
22 | |
23 .header .form { | |
24 float: left; | |
25 margin-top: 22px; | |
26 -webkit-margin-start: 12px; | |
27 } | |
28 | |
29 html[dir=rtl] .logo, html[dir=rtl] .form { | |
30 float: right; | |
31 } | |
Dan Beam
2011/11/10 09:30:47
So, you couldn't find any occurrences of .header .
Evan Stade
2011/11/10 17:51:47
no, they're deleted here because those rules were
| |
32 | 9 |
33 #downloads-summary { | 10 #downloads-summary { |
34 margin-top: 12px; | 11 margin-top: 12px; |
35 border-top: 1px solid #9cc2ef; | 12 border-top: 1px solid #9cc2ef; |
36 background-color: #ebeff9; | 13 background-color: #ebeff9; |
37 padding: 3px; | 14 padding: 3px; |
38 margin-bottom: 6px; | 15 margin-bottom: 6px; |
39 } | 16 } |
40 | 17 |
41 #downloads-summary-text { | 18 #downloads-summary-text { |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
168 .controls a { | 145 .controls a { |
169 color: #777; | 146 color: #777; |
170 margin-right: 16px; | 147 margin-right: 16px; |
171 } | 148 } |
172 | 149 |
173 #downloads-pagination { | 150 #downloads-pagination { |
174 padding-top: 24px; | 151 padding-top: 24px; |
175 margin-left: 18px; | 152 margin-left: 18px; |
176 } | 153 } |
177 | 154 |
178 .page-navigation { | |
179 padding: 8px; | |
180 background-color: #ebeff9; | |
181 margin-right: 4px; | |
182 } | |
183 | |
184 .footer { | |
185 height: 24px; | |
186 } | |
187 | |
188 </style> | 155 </style> |
189 <script src="chrome://resources/js/local_strings.js"></script> | 156 <script src="chrome://resources/js/local_strings.js"></script> |
190 </head> | 157 </head> |
191 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 158 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
192 <div class="header"> | 159 <div class="header"> |
193 <a id="search-link" href=""> | 160 <a id="search-link" href=""> |
194 <img src="shared/images/downloads_section.png" | 161 <img src="shared/images/downloads_section.png" |
195 width="67" height="67" class="logo" border="0" /></a> | 162 width="67" height="67" class="logo" border="0" /></a> |
196 <form id="search-form" method="post" action="" class="form"> | 163 <form id="search-form" method="post" action="" class="form"> |
197 <input type="text" name="term" id="term" /> | 164 <input type="text" name="term" id="term" /> |
198 <input id="search-submit" | 165 <input id="search-submit" |
199 type="submit" name="submit" i18n-values="value:searchbutton" /> | 166 type="submit" name="submit" i18n-values="value:searchbutton" /> |
200 </form> | 167 </form> |
201 </div> | 168 </div> |
202 <div class="main"> | 169 <div class="main"> |
203 <div id="downloads-summary"> | 170 <div id="downloads-summary"> |
204 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> | 171 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> |
205 <span id="downloads-actions"> | 172 <span id="downloads-actions"> |
206 <a id="open-downloads-folder" href="" | 173 <a id="open-downloads-folder" href="" |
207 i18n-content="open_downloads_folder">Open downloads folder</a> | 174 i18n-content="open_downloads_folder">Open downloads folder</a> |
208 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a> | 175 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a> |
209 </span> | 176 </span> |
210 </div> | 177 </div> |
211 <div id="downloads-display"></div> | 178 <div id="downloads-display"></div> |
212 </div> | 179 </div> |
213 <div class="footer"> | |
214 </div> | |
215 <script src="chrome://downloads/downloads.js"></script> | 180 <script src="chrome://downloads/downloads.js"></script> |
216 <script src="chrome://downloads/strings.js"></script> | 181 <script src="chrome://downloads/strings.js"></script> |
217 <script src="chrome://resources/js/i18n_template.js"></script> | 182 <script src="chrome://resources/js/i18n_template.js"></script> |
218 <script src="chrome://resources/js/i18n_process.js"></script> | 183 <script src="chrome://resources/js/i18n_process.js"></script> |
219 </body> | 184 </body> |
220 </html> | 185 </html> |
OLD | NEW |