-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
chrome-lookalike.css
95 lines (77 loc) · 1.45 KB
/
chrome-lookalike.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
.qs_input {
padding: 18px 6px 18px 16px;
border-bottom: none;
}
.item {
padding-top: 12px;
padding-bottom: 12px;
border-bottom: none;
}
div.tabimage img {
margin: 2px 12px 0 12px;
width: 20px;
height: 20px;
}
div.close {
background-size: 16px 16px;
}
div.title {
padding-top: 0px;
padding-bottom: 2px;
font-size: 13px;
color: #212121 !important;
}
div.url {
font-size: 11px;
color: #4c565a!important;
}
body {
font-family: cursive;
}
div.title, div.url {
padding-right: 6px;
}
.item:hover, .item:hover div.title, div.closed.item:hover div.title, .item:hover div.url {
background-color: #eee;
color: white;
}
.withfocus:hover, .withfocus:hover div.title, div.closed.withfocus:hover div.title, .withfocus:hover div.url, .withfocus, .withfocus div.title, div.closed.withfocus div.title, .withfocus div.url {
background-color: #d4d4d4;
color: black;
}
.item b {
/*color: #212121;*/
text-decoration: none !important;
}
.withfocus b {
color: #212121;
}
.item:hover .title b {
color: #212121;
}
.item:hover .url b {
color: #4c565a;
}
div.close {
position: relative;
border-radius: 12px;
height: 24px;
width: 24px;
margin-top: 3px;
margin-right: 12px;
background: transparent;
}
div.close:hover {
background: #bbb;
}
div.close:before {
position: absolute;
content: 'X';
font-weight: 600;
font-size: 14px;
top: 4px;
left: 7px;
}
div.open:hover div.close, div.withfocus.open div.close {
color: black;
}