summaryrefslogtreecommitdiffstats
path: root/browser/components/aboutlogins/content/aboutLoginsImportReport.css
blob: 8e126ecb6273a830a16d9d95ac4c638bdd8046ce (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* 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/. */

.importreport {
  display: block;
}

#report-body {
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-template-rows: 110px 145px auto;
  grid-column: logins/login;
  height: 100%;
}

.import-report-heading {
  font-weight: 600;
  margin-block: auto;
  margin-inline-start: 48px;
}

.summary {
  grid-column: 2 / 5;
  grid-row-start: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.summary h2 {
  font-size: 24px;
  margin-block: 32px 8px;
}


.summary > a {
  margin-top: 12px;
}

.new-logins,
.exiting-logins,
.duplicate-logins,
.errors-logins {
  display: flex;
  flex-direction: column;
  width: 120px;
  height: 100px;
  align-items: center;
  margin: auto;
}

.count-details {
  margin-top: 8px;
  text-align: center;
}

.result-count {
  font-size: 40px;
  font-weight: bold;
}

.new-logins {
  grid-column: 2;
  grid-row-start: 2;
}

.exiting-logins {
  grid-column: 3;
  grid-row-start: 2;
}

.duplicate-logins {
  grid-column: 4;
  grid-row-start: 2;
}

.errors-logins {
  grid-column: 5;
  grid-row-start: 2;
}

.logins-list {
  grid-column: 2 / 6;
  grid-row-start: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: 1px solid var(--in-content-border-color);
  grid-auto-rows: 28px;
  overflow-y: auto;
}

.not-imported {
  font-style: italic;
  font-weight: bold;
}

.error {
  color: var(--dialog-warning-text-color);
}

.not-imported-hidden {
  visibility: hidden;
}

import-details-row:nth-child(odd) {
  background-color: var(--in-content-box-background-odd);
}

import-details-row {
  height: 20px;
  margin-block: 1px;
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: subgrid;
  grid-gap: 16px;
}

import-details-row .row-count {
  padding-inline: 8px 12px;
}

import-details-row .row-details {
  padding-inline-start: 5px;
}