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

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

Issue 2808293003: Sync confirmation: hide extraneous checkbox ripple on early focus (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 | chrome/browser/resources/signin/sync_confirmation/sync_confirmation.js » ('j') | 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: 22px; 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 <if expr="is_macosx">
30 html:not(.focus-allowed) paper-checkbox {
31 --paper-checkbox-ink-size: 0;
32 }
33 </if>
29 </style> 34 </style>
30 </head> 35 </head>
31 <body> 36 <body>
32 <div class="container"> 37 <div class="container">
33 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> 38 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div>
34 <div class="details" id="syncConfirmationDetails"> 39 <div class="details" id="syncConfirmationDetails">
35 <div id="picture-container"> 40 <div id="picture-container">
36 <div id="illustration"> 41 <div id="illustration">
37 <div id="icons"> 42 <div id="icons">
38 <div id="icon-bookmarks" class="fade-top-left"></div> 43 <div id="icon-bookmarks" class="fade-top-left"></div>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 </paper-button> 112 </paper-button>
108 </div> 113 </div>
109 </div> 114 </div>
110 </body> 115 </body>
111 <script src="chrome://resources/js/cr.js"></script> 116 <script src="chrome://resources/js/cr.js"></script>
112 <script src="chrome://resources/js/load_time_data.js"></script> 117 <script src="chrome://resources/js/load_time_data.js"></script>
113 <script src="chrome://resources/js/util.js"></script> 118 <script src="chrome://resources/js/util.js"></script>
114 <script src="sync_confirmation.js"></script> 119 <script src="sync_confirmation.js"></script>
115 <script src="chrome://sync-confirmation/strings.js"></script> 120 <script src="chrome://sync-confirmation/strings.js"></script>
116 </html> 121 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/signin/sync_confirmation/sync_confirmation.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698