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

Side by Side Diff: chrome/browser/resources/contextual_search/promo.html

Issue 982643002: [Contextual Search] Update promo look. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually adding SVG ;) Created 5 years, 9 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. --> 5 found in the LICENSE file. -->
6 <head> 6 <head>
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <meta name="viewport" content="width=device-width, user-scalable=no"> 8 <meta name="viewport" content="width=device-width, user-scalable=no">
9 <title>Contextual Search First-Run</title> 9 <title>Contextual Search First-Run</title>
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
11 <link rel="stylesheet" href="promo.css"> 11 <link rel="stylesheet" href="promo.css">
12 <script src="chrome://contextual-search-promo/config.js"></script> 12 <script src="chrome://contextual-search-promo/config.js"></script>
13 <script src="chrome://contextual-search-promo/promo.js"></script> 13 <script src="chrome://contextual-search-promo/promo.js"></script>
14 </head> 14 </head>
15 <body> 15 <body>
16 <div id="container"> 16 <div id="container">
17 <img id="header-image" class="portrait" src="header.svg"> 17 <div class="header-image portrait"></div>
18 <p id="heading" i18n-content="heading"></p> 18 <div id="heading" i18n-content="heading"></div>
19 <div> 19 <div class="header-image landscape"></div>
20 <img id="header-image" class="landscape" src="header.svg"> 20 <div id="description">
21 <p id="description"> 21 <span i18n-content="description-1"></span>
22 <span i18n-content="description-1"></span> 22 <a class="colored-link" href="#learn-more"
23 <a class="colored-link" href="#learn-more" 23 i18n-content="feature-name">
24 i18n-content="feature-name"> 24 </a>
25 </a> 25 <span i18n-content="description-2"></span>
26 <span i18n-content="description-2"></span>
27 </p>
28 </div> 26 </div>
29 <div id="button-container"> 27 <div id="button-container">
30 <button id="optout-button"> 28 <button id="optout-button">
31 <span class="caption" i18n-content="optOut"></span> 29 <span class="caption" i18n-content="optOut"></span>
32 </button> 30 </button>
33 <button id="optin-button"> 31 <button id="optin-button">
34 <span class="caption" i18n-content="optIn"></span> 32 <span class="caption" i18n-content="optIn"></span>
35 </button> 33 </button>
36 </div> 34 </div>
37 </div> 35 </div>
38 </body> 36 </body>
39 </html> 37 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/contextual_search/promo.css ('k') | chrome/browser/resources/contextual_search/promo.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698