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

Side by Side Diff: chrome/browser/resources/settings/reset_page/reset_page_dialog.css

Issue 1482573002: MD Settings: Adjusting reset-page dialogs styling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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
(Empty)
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
3 * found in the LICENSE file. */
4
5 #dialog-content {
6 -webkit-padding-end: 0;
7 -webkit-padding-start: 0;
8 margin-top: 0;
9 }
10
11 .dialog-title {
12 border-bottom: 1px solid gainsboro;
13 font-size: 1.13em;
14 padding-bottom: 14px;
15 padding-top: 14px;
16 }
17
18 .dialog-body {
19 font-size: 1em;
20 margin: 20px 0;
21 }
22
23 .dialog-title,
24 .dialog-body {
25 -webkit-padding-end: 24px;
26 -webkit-padding-start: 24px;
27 }
28
29 .button-container {
30 display: flex;
31 }
32
33 .action-button {
34 -webkit-margin-start: 10px;
35 background-color: rgb(66, 133, 244);
36 color: white;
37 font-weight: 500;
38 }
39
40 .cancel-button {
41 color: rgb(66, 133, 244);
42 font-weight: 500;
43 }
44
45 paper-button {
46 margin: 0;
47 }
48
49 .explanation {
50 margin-bottom: 35px;
51 }
52
53 .action-buttons {
54 display: flex;
55 flex: 1;
56 justify-content: flex-end;
57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698