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

Side by Side Diff: chrome/browser/resources/signin/sync_confirmation/sync_confirmation.html

Issue 2803373002: Sync confirmation: tweak "Control how this works in settings" checkbox spacing (Closed)
Patch Set: Created 3 years, 8 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
« 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 dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="import" href="chrome://resources/html/polymer.html"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html "> 6 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html ">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/pape r-checkbox.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/pape r-checkbox.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color. html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color. html">
10 <link rel="import" href="signin_shared_css.html"> 10 <link rel="import" href="signin_shared_css.html">
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
12 <link rel="stylesheet" href="sync_confirmation.css"></link> 12 <link rel="stylesheet" href="sync_confirmation.css"></link>
13 <style is="custom-style" include="signin-dialog-shared"> 13 <style is="custom-style" include="signin-dialog-shared">
14 <if expr="is_macosx or is_linux"> 14 <if expr="is_macosx or is_linux">
15 #undoButton { 15 #undoButton {
16 -webkit-margin-end: 8px; 16 -webkit-margin-end: 8px;
17 -webkit-margin-start: 0; 17 -webkit-margin-start: 0;
18 } 18 }
19 </if> 19 </if>
20 /* TODO(dbeam): de-duplicate this style with MD Settings. */ 20 /* TODO(dbeam): de-duplicate this style with MD Settings. */
21 paper-checkbox { 21 paper-checkbox {
22 --paper-checkbox-checked-color: var(--google-blue-500); 22 --paper-checkbox-checked-color: var(--google-blue-500);
23 --paper-checkbox-label-color: inherit; 23 --paper-checkbox-label-color: inherit;
24 --paper-checkbox-label-spacing: 18px; 24 --paper-checkbox-label-spacing: 22px;
25 --paper-checkbox-size: 16px; 25 --paper-checkbox-size: 16px;
26 --paper-checkbox-unchecked-color: var(--paper-grey-600); 26 --paper-checkbox-unchecked-color: var(--paper-grey-600);
27 -webkit-margin-start: 2px; 27 -webkit-margin-start: 2px;
28 } 28 }
29 </style> 29 </style>
30 </head> 30 </head>
31 <body> 31 <body>
32 <div class="container"> 32 <div class="container">
33 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> 33 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div>
34 <div class="details" id="syncConfirmationDetails"> 34 <div class="details" id="syncConfirmationDetails">
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 </paper-button> 107 </paper-button>
108 </div> 108 </div>
109 </div> 109 </div>
110 </body> 110 </body>
111 <script src="chrome://resources/js/cr.js"></script> 111 <script src="chrome://resources/js/cr.js"></script>
112 <script src="chrome://resources/js/load_time_data.js"></script> 112 <script src="chrome://resources/js/load_time_data.js"></script>
113 <script src="chrome://resources/js/util.js"></script> 113 <script src="chrome://resources/js/util.js"></script>
114 <script src="sync_confirmation.js"></script> 114 <script src="sync_confirmation.js"></script>
115 <script src="chrome://sync-confirmation/strings.js"></script> 115 <script src="chrome://sync-confirmation/strings.js"></script>
116 </html> 116 </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