summaryrefslogtreecommitdiffstats
path: root/browser/components/aboutlogins/content/components/import-summary-dialog.css
blob: 20dd987958fc4b49a4900578c43cea6c0e9cb463 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.import-summary {
  display: grid;
  grid-template-columns: max-content max-content max-content;
}

.import-summary > * > span {
  margin-block: 0 2px;
  margin-inline: 0 10px;
}

.import-items-row {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: subgrid;
}

.result-count {
  text-align: end;
  font-weight: bold;
}

.result-meta {
  font-style: italic;
}
.import-items-errors .result-meta {
  color: var(--dialog-warning-text-color);
}

.open-detailed-report {
  margin-block-start: 30px;
  font-weight: 600;
}