summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/settings_dialog.css
blob: 786f04c198d82cd837f13391cc3385e1bc98894e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Copyright 2015 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

/**
 * @fileoverview
 * Common dialog styles for Material Design settings.
 */

#dialog-content {
  -webkit-padding-end: 0;
  -webkit-padding-start: 0;
  margin-bottom: 0;
  margin-top: 0;
}

paper-dialog .top-row {
  align-items: center;
  border-bottom: 1px solid gainsboro;
  display: flex;
  padding-bottom: 5px;
  padding-top: 5px;
}

paper-dialog .title {
  flex: 1;
  font-size: 1.13em;
}

paper-dialog .body {
  font-size: 1em;
  margin: 20px 0;
}

paper-dialog .title,
paper-dialog .body {
  -webkit-padding-end: 24px;
  -webkit-padding-start: 24px;
}

paper-dialog .action-button {
  -webkit-margin-start: 10px;
  background-color: rgb(66, 133, 244);
  color: white;
  font-weight: 500;
}

paper-dialog .cancel-button {
  color: rgb(109, 109, 109);
  font-weight: 500;
}

paper-dialog .explanation {
  margin-bottom: 35px;
}

paper-dialog .button-container {
  display: flex;
  justify-content: flex-end;
}

paper-dialog paper-button {
  margin: 0;
  min-width: auto;
}

paper-dialog paper-button[toggles][active] {
  background-color: LightGray;
}