Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: chrome/browser/resources/chromeos/active_downloads.html

Issue 8687012: Moved ChromeOS-specific resources from chrome/browser/resources to chrome/browser/resources/chrom... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
11 11
12 *[draggable] { 12 *[draggable] {
13 -khtml-user-drag: element; 13 -khtml-user-drag: element;
14 cursor: move; 14 cursor: move;
15 } 15 }
16 16
17 ul.downloadlist { 17 ul.downloadlist {
18 list-style-type: none; 18 list-style-type: none;
19 margin: 0; 19 margin: 0;
20 padding: 0; 20 padding: 0;
21 position: relative; 21 position: relative;
22 } 22 }
23 23
24 .menuicon { 24 .menuicon {
25 margin: 20px auto auto auto; 25 margin: 20px auto auto auto;
26 height: 4px; 26 height: 4px;
27 width: 5px; 27 width: 5px;
28 background: url('shared/images/active_downloads_menu.png') no-repeat; 28 background: url('../shared/images/active_downloads_menu.png') no-repeat;
29 } 29 }
30 30
31 .menubutton { 31 .menubutton {
32 float: right; 32 float: right;
33 height: 43px; 33 height: 43px;
34 width: 24px; 34 width: 24px;
35 border-left: 1px solid #CCC; 35 border-left: 1px solid #CCC;
36 border-bottom: 1px solid #CCC; 36 border-bottom: 1px solid #CCC;
37 cursor: pointer; 37 cursor: pointer;
38 } 38 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 width: 21px; 75 width: 21px;
76 height: 17px; 76 height: 17px;
77 background-repeat: no-repeat; 77 background-repeat: no-repeat;
78 } 78 }
79 79
80 .rowbutton div.iconwarning { 80 .rowbutton div.iconwarning {
81 float: left; 81 float: left;
82 margin-top: 1px; 82 margin-top: 1px;
83 width: 37px; 83 width: 37px;
84 height: 30px; 84 height: 30px;
85 background: url('shared/images/icon_warning2.png') no-repeat; 85 background: url('../shared/images/icon_warning2.png') no-repeat;
86 } 86 }
87 87
88 .rowbutton span.title { 88 .rowbutton span.title {
89 position: relative; 89 position: relative;
90 text-overflow: ellipsis; 90 text-overflow: ellipsis;
91 white-space: nowrap; 91 white-space: nowrap;
92 display: inline-block; 92 display: inline-block;
93 overflow: hidden; 93 overflow: hidden;
94 width: 191px; 94 width: 191px;
95 margin-right: -20px; 95 margin-right: -20px;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/about_sys.html ('k') | chrome/browser/resources/chromeos/active_downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698