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

Side by Side Diff: chrome/browser/resources/ntp4/incognito_tab.html

Issue 1516233003: Incognito NTP style tweaks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add minimum content width Created 5 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection; 2 <html i18n-values="dir:textdirection;
3 hascustombackground:hasCustomBackground; 3 hascustombackground:hasCustomBackground;
4 bookmarkbarattached:bookmarkbarattached; 4 bookmarkbarattached:bookmarkbarattached;
5 lang:language"> 5 lang:language">
6 <head> 6 <head>
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <title i18n-content="title"></title> 8 <title i18n-content="title"></title>
9 <meta name="viewport" content="width=device-width">
10 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
10 <link rel="stylesheet" href="incognito_and_guest_tab.css"> 12 <link rel="stylesheet" href="incognito_and_guest_tab.css">
11 <link rel="stylesheet" href="incognito_tab.css"> 13 <link rel="stylesheet" href="incognito_tab.css">
12 <script> 14 <script>
13 // Until themes can clear the cache, force-reload the theme stylesheet. 15 // Until themes can clear the cache, force-reload the theme stylesheet.
14 document.write('<link id="incognitothemecss" rel="stylesheet" ' + 16 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
15 'href="chrome://theme/css/incognito_new_tab_theme.css?' + 17 'href="chrome://theme/css/incognito_new_tab_theme.css?' +
16 Date.now() + '">'); 18 Date.now() + '">');
17 </script> 19 </script>
18 </head> 20 </head>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); 53 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now();
52 } 54 }
53 55
54 return { 56 return {
55 setBookmarkBarAttached: setBookmarkBarAttached, 57 setBookmarkBarAttached: setBookmarkBarAttached,
56 themeChanged: themeChanged, 58 themeChanged: themeChanged,
57 }; 59 };
58 }); 60 });
59 </script> 61 </script>
60 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698