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

Side by Side Diff: chrome/browser/resources/about_conflicts.html

Issue 286933003: Support 2x resoruce in about_conflicts.html (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <style> 5 <style>
6 body { 6 body {
7 margin: 10px; 7 margin: 10px;
8 min-width: 47em; 8 min-width: 47em;
9 } 9 }
10 10
11 a { 11 a {
12 color: blue; 12 color: blue;
13 font-size: 103%; 13 font-size: 103%;
14 } 14 }
15 15
16 div#header { 16 div#header {
17 margin-bottom: 1.05em; 17 margin-bottom: 1.05em;
18 /* 67px is the height of the header's background image. */ 18 /* 67px is the height of the header's background image. */
19 min-height: 67px; 19 min-height: 67px;
20 overflow: hidden; 20 overflow: hidden;
21 padding-bottom: 20px; 21 padding-bottom: 20px;
22 -webkit-padding-start: 0; 22 -webkit-padding-start: 0;
23 padding-top: 20px; 23 padding-top: 20px;
24 position: relative; 24 position: relative;
25 box-sizing: border-box; 25 box-sizing: border-box;
26 } 26 }
27 27
28 #header h1 { 28 #header h1 {
29 background: url('../../app/theme/default_100_percent/common/about_conflicts.pn g') 0px 20px no-repeat; 29 background-image: -webkit-image-set(
30 url('../../app/theme/default_100_percent/common/about_conflicts.png') 1x,
31 url('../../app/theme/default_200_percent/common/about_conflicts.png') 2x);
32 background-position: 0px 20px;
33 background-repeat: no-repeat;
30 display: inline; 34 display: inline;
31 margin: 0; 35 margin: 0;
32 padding-bottom: 43px; 36 padding-bottom: 43px;
33 padding-left: 75px; 37 padding-left: 75px;
34 padding-top: 40px; 38 padding-top: 40px;
35 } 39 }
36 40
37 html[dir=rtl] #header h1 { 41 html[dir=rtl] #header h1 {
38 background: url('../../app/theme/default_100_percent/common/about_conflicts.pn g') right no-repeat; 42 background-image: -webkit-image-set(
43 url('../../app/theme/default_100_percent/common/about_conflicts.png') 1x,
44 url('../../app/theme/default_200_percent/common/about_conflicts.png') 2x);
45 background-position: right;
46 background-repeat: no-repeat;
39 padding-right: 95px; 47 padding-right: 95px;
40 padding-left: 0; 48 padding-left: 0;
41 } 49 }
42 50
43 h1 { 51 h1 {
44 font-size: 156%; 52 font-size: 156%;
45 font-weight: bold; 53 font-weight: bold;
46 padding: 0; 54 padding: 0;
47 margin: 0; 55 margin: 0;
48 } 56 }
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 258 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
251 <script src="chrome://resources/js/load_time_data.js"></script> 259 <script src="chrome://resources/js/load_time_data.js"></script>
252 <script src="chrome://resources/js/util.js"></script> 260 <script src="chrome://resources/js/util.js"></script>
253 261
254 <script src="chrome://conflicts/strings.js"></script> 262 <script src="chrome://conflicts/strings.js"></script>
255 <script src="chrome://resources/js/i18n_template2.js"></script> 263 <script src="chrome://resources/js/i18n_template2.js"></script>
256 264
257 <script src="chrome://conflicts/conflicts.js"></script> 265 <script src="chrome://conflicts/conflicts.js"></script>
258 </body> 266 </body>
259 </html> 267 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698