| 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 <style type="text/css"> | 7 <style type="text/css"> |
| 8 *:-khtml-drag { | 8 *:-khtml-drag { |
| 9 background-color: rgba(238,238,238, 0.5); | 9 background-color: rgba(238,238,238, 0.5); |
| 10 } | 10 } |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 166 } |
| 167 | 167 |
| 168 .menuitem { | 168 .menuitem { |
| 169 width: 100%; | 169 width: 100%; |
| 170 height: 20px; | 170 height: 20px; |
| 171 font-size: .8em; | 171 font-size: .8em; |
| 172 text-align: left; | 172 text-align: left; |
| 173 cursor: pointer; | 173 cursor: pointer; |
| 174 left: 0; | 174 left: 0; |
| 175 color: #0D0052; | 175 color: #0D0052; |
| 176 -webkit-transition: color 1.0s ease-out ; | 176 -webkit-transition: color 1s ease-out ; |
| 177 } | 177 } |
| 178 | 178 |
| 179 .menuitem:hover { | 179 .menuitem:hover { |
| 180 text-decoration: underline; | 180 text-decoration: underline; |
| 181 color: #20c; | 181 color: #20c; |
| 182 background: #ebeff9; | 182 background: #ebeff9; |
| 183 -webkit-transition: color 0.0s ease-out ; | 183 -webkit-transition: color 0 ease-out ; |
| 184 } | 184 } |
| 185 | 185 |
| 186 </style> | 186 </style> |
| 187 <script src="chrome://resources/js/local_strings.js"></script> | 187 <script src="chrome://resources/js/local_strings.js"></script> |
| 188 <script src="chrome://resources/js/media_common.js"></script> | 188 <script src="chrome://resources/js/media_common.js"></script> |
| 189 <script src="chrome://resources/js/util.js"></script> | 189 <script src="chrome://resources/js/util.js"></script> |
| 190 <script src="chrome://active-downloads/strings.js"></script> | 190 <script src="chrome://active-downloads/strings.js"></script> |
| 191 <script src="chrome://active-downloads/active_downloads.js"></script> | 191 <script src="chrome://active-downloads/active_downloads.js"></script> |
| 192 <body i18n-values=".style.fontFamily:fontfamily"> | 192 <body i18n-values=".style.fontFamily:fontfamily"> |
| 193 <div id="main" class="columnlist"></div> | 193 <div id="main" class="columnlist"></div> |
| 194 <div id="showallfiles" class="showallfiles"> | 194 <div id="showallfiles" class="showallfiles"> |
| 195 <span id="showallfilestext" class="showallfilestext"></span> | 195 <span id="showallfilestext" class="showallfilestext"></span> |
| 196 </div> | 196 </div> |
| 197 <script src="chrome://resources/js/i18n_template.js"></script> | 197 <script src="chrome://resources/js/i18n_template.js"></script> |
| 198 <script src="chrome://resources/js/i18n_process.js"></script> | 198 <script src="chrome://resources/js/i18n_process.js"></script> |
| 199 </body> | 199 </body> |
| 200 </html> | 200 </html> |
| OLD | NEW |