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

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

Issue 1930103002: Fixes the spacing between the buttons on the Sync Confirmation Screen (MacOS and Linux) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sync-confirmation-bug-fix
Patch Set: Created 4 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
« 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;lang:language"> 2 <html i18n-values="dir:textdirection;lang: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/polymer/v1_0/paper-button/paper- button.html"> 6 <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-styles/color. html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color. html">
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
9 <link rel="stylesheet" href="sync_confirmation.css"></link> 9 <link rel="stylesheet" href="sync_confirmation.css"></link>
10 <style is="custom-style"> 10 <style is="custom-style">
(...skipping 16 matching lines...) Expand all
27 #undoButton { 27 #undoButton {
28 --paper-button: { 28 --paper-button: {
29 color: var(--paper-grey-600); 29 color: var(--paper-grey-600);
30 }; 30 };
31 --paper-button-flat-keyboard-focus: { 31 --paper-button-flat-keyboard-focus: {
32 background: rgba(0, 0, 0, .12); 32 background: rgba(0, 0, 0, .12);
33 font-weight: 500; 33 font-weight: 500;
34 }; 34 };
35 } 35 }
36 36
37 <if expr="is_macosx or is_linux">
37 .action-container { 38 .action-container {
38 <if expr="is_macosx or is_linux">
39 flex-flow: row-reverse; 39 flex-flow: row-reverse;
40 justify-content: flex-start; 40 justify-content: flex-start;
41 }
42
43 #undoButton {
44 -webkit-margin-end: 8px;
45 -webkit-margin-start: 0;
46 }
41 </if> 47 </if>
42 }
43 </style> 48 </style>
44 </head> 49 </head>
45 <body> 50 <body>
46 <div class="container"> 51 <div class="container">
47 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> 52 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div>
48 <div class="details"> 53 <div class="details">
49 <div id="picture-container"> 54 <div id="picture-container">
50 <div id="illustration"> 55 <div id="illustration">
51 <div id="icons"> 56 <div id="icons">
52 <div id="icon-bookmarks" class="fade-top-left"></div> 57 <div id="icon-bookmarks" class="fade-top-left"></div>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 <script src="chrome://resources/js/i18n_template.js"></script> 121 <script src="chrome://resources/js/i18n_template.js"></script>
117 </html> 122 </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