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

Side by Side Diff: chrome/browser/resources/settings/settings_dialog.css

Issue 1576253002: [MD settings] OnStartup settings layout closer to mocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review nit Created 4 years, 11 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 /* 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 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * Common dialog styles for Material Design settings. 7 * Common dialog styles for Material Design settings.
8 */ 8 */
9 9
10 #dialog-content { 10 #dialog-content {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 color: rgb(109, 109, 109); 49 color: rgb(109, 109, 109);
50 font-weight: 500; 50 font-weight: 500;
51 } 51 }
52 52
53 paper-dialog .explanation { 53 paper-dialog .explanation {
54 margin-bottom: 35px; 54 margin-bottom: 35px;
55 } 55 }
56 56
57 paper-dialog .button-container { 57 paper-dialog .button-container {
58 display: flex; 58 display: flex;
59 flex: 1;
60 justify-content: flex-end; 59 justify-content: flex-end;
61 } 60 }
62 61
63 paper-dialog paper-button { 62 paper-dialog paper-button {
64 margin: 0; 63 margin: 0;
65 min-width: auto; 64 min-width: auto;
66 } 65 }
67 66
68 paper-dialog paper-button[toggles][active] { 67 paper-dialog paper-button[toggles][active] {
69 background-color: LightGray; 68 background-color: LightGray;
70 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698