blob: 55521b272e818dfb3f74f2798008ac11015d897e (
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
|
.autofill-list-item {
-webkit-box-flex: 1;
-webkit-padding-start: 8px;
overflow: hidden;
text-overflow: ellipsis;
}
.autofill-list-item + img {
-webkit-padding-end: 20px;
vertical-align: middle;
}
#autofill-options > div:last-child {
margin-top: 15px;
}
#autofill-options > div.settings-list > div:last-child {
border-top: 1px solid #d9d9d9;
padding: 5px 10px;
}
#autofill-add-address,
#autofill-add-creditcard {
margin: 2px 0;
}
.autofill-list-item + button,
.autofill-list-item + img + button {
background: #8aaaed !important; /* Gets overwritten by raw-button:hover */
color: #fff;
margin-top: 0;
}
#address-list > div:not(:hover) * button,
#creditcard-list > div:not(:hover) * button {
display: none;
}
|