-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
73 lines (73 loc) · 1.13 KB
/
popup.css
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
* {
font-size: 14px;
margin: 0px;
}
h1 {
margin:0px;
padding: 5px;
white-space: nowrap;
}
#domainList {
padding: 5px 10px;
/*padding: 10px 10px 10px 10px;*/
width: 100%;
}
.domain_row {
line-height: 20px;
}
.link {
padding: 5px 0px;
cursor: pointer;
}
.remove,.edit,.done,.cansel {
font-size: 16px;
padding-top: 5px;
/*visibility: hidden;*/
cursor: pointer;
}
.remove,.edit {
visibility: hidden;
}
/*.edit {*/
/*font-size: 16px;*/
/*padding-top: 5px;*/
/*visibility: hidden;*/
/*cursor: pointer;*/
/*}*/
.domain_row:hover {
color: #000000;
}
.domain_row:hover .remove {
visibility: visible;
}
.domain_row:hover .edit {
visibility: visible;
}
#controll_line {
padding: 8px;
}
#aliaseInput {
width: calc(100% - 30px);
float: left;
}
#addButton {
font-size: 18px;
padding: 3px 0px 1px 6px;
float: left;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.color-u {
color: #8d8d8d;
}
.color-b {
background-color: #E1E2E1;
color: #222222;
}
.color-p-dark {
background-color: #29434e;
color: #ffffff;
}