-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_predict.css
107 lines (90 loc) · 2.1 KB
/
search_predict.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
96
97
98
99
100
101
102
103
104
105
106
107
/*
.dark-knight is a class applied to the body of Trakt.tv's website
whenever dark mode is turned on. this can only be done by "VIP" members,
for which you need to donate money to them.
*/
#header-search-predictions {
display: none;
background: #fff;
color: #333;
border: solid 1px #ccc;
}
.dark-knight #header-search-predictions {
background: #333;
color: #ccc;
border: solid 1px #666;
border-top: none;
}
#header-search.open #header-search-predictions {
display: block;
}
#header-search-predictions:empty {
display: none !important;
}
.header-search-prediction-item {
display: block;
height: 52px;
cursor: pointer;
color: inherit !important;
border-top: solid 1px #ccc;
padding: 6px 12px 6px 6px;
white-space: nowrap;
overflow: hidden;
text-decoration: none !important;
}
.dark-knight .header-search-prediction-item {
border-top: solid 1px #666;
}
.header-search-prediction-item:first-child {
border-top: none !important;
}
.header-search-prediction-item:hover,
.header-search-prediction-item:focus {
background: #e6e6e6 !important;
text-decoration: none !important;
}
.dark-knight .header-search-prediction-item:hover,
.dark-knight .header-search-prediction-item:focus {
background: #222 !important;
}
.header-search-prediction-item > * {
display: inline-block;
vertical-align: middle;
}
.header-search-prediction-item-poster {
display: inline-block;
width: 27px;
margin-right: 12px;
}
.header-search-prediction-item .header-search-prediction-item-text {
display: inline-block;
width: calc(100% - 39px);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.header-search-prediction-item .header-search-prediction-item-text > * {
vertical-align: middle;
}
.header-search-prediction-item-type {
display: inline-block;
background-color: #ed1c24;
color: #fff;
font-size: 9px;
padding: 1px 3px;
margin-right: 4px;
text-align: center;
width: 30px;
}
.header-search-prediction-item small {
color: #777;
}
.dark-knight .header-search-prediction-item small {
color: #aaa;
}
@media (max-width: 767px) {
#header-search-predictions {
width: 100% !important;
margin-top: 46px;
}
}