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

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

Issue 1910953003: Fixes the broken focus issue of 'OK, GOT IT' and 'UNDO' in the sync confirmation dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Michael's comments 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 | chrome/browser/resources/sync_confirmation/sync_confirmation.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 body { 5 body {
6 margin: 0; 6 margin: 0;
7 padding: 0; 7 padding: 0;
8 } 8 }
9 9
10 .picture img { 10 .picture img {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 } 104 }
105 105
106 #confirmButton, 106 #confirmButton,
107 #undoButton { 107 #undoButton {
108 font-weight: 500; 108 font-weight: 500;
109 line-height: 16px; 109 line-height: 16px;
110 margin: 0; 110 margin: 0;
111 padding: 8px 16px; 111 padding: 8px 16px;
112 } 112 }
113 113
114 #confirmButton {
115 background-color: rgb(66, 133, 244);
116 color: white;
117 }
118
119 #undoButton { 114 #undoButton {
120 -webkit-margin-start: 8px; 115 -webkit-margin-start: 8px;
121 color: #5A5A5A;
122 } 116 }
123 117
124 #illustration { 118 #illustration {
125 height: 96px; 119 height: 96px;
126 margin: 0 auto; 120 margin: 0 auto;
127 position: relative; 121 position: relative;
128 width: 264px; 122 width: 264px;
129 } 123 }
130 124
131 #checkmark-circle { 125 #checkmark-circle {
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 @keyframes fade-in-icon-bottom-right { 341 @keyframes fade-in-icon-bottom-right {
348 from { 342 from {
349 opacity: 0; 343 opacity: 0;
350 transform: translate(0, 0); 344 transform: translate(0, 0);
351 } 345 }
352 to { 346 to {
353 opacity: 0.1; 347 opacity: 0.1;
354 transform: translate(4px, 4px); 348 transform: translate(4px, 4px);
355 } 349 }
356 } 350 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/sync_confirmation/sync_confirmation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698