-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigation.css
102 lines (84 loc) · 1.58 KB
/
navigation.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
.navigation {
position: relative;
}
.navigation .placeholder, .navigation .close-text, .navigation .ajax-loader, .navigation input {
position: absolute;
}
.navigation .placeholder {
width: 100%;
height: 20px;
}
.navigation input {
left: 15px;
height: 20px;
}
.navigation .ajax-loader{
right:-33px;
top:2px;
}
.navigation .close-text {
right: -15px;
}
.navigation .close-text {
color:red;
cursor:pointer;
font-family: monospace;
font-weight: bold;
}
.navigation .placeholder .search-icon {
height:12px;
padding-right:5px;
}
.navigation .placeholder .select-icon {
height: 6px;
padding-top: 4px;
padding-left: 5px;
float:right;
}
.navigation .placeholder{
border-bottom: 1px dotted black;
}
#navigation-panel {
position:absolute;
min-height:100px;
border:2px solid #CACACA;
border-radius: 2px;
margin-top: 3px;
padding: 5px;
}
#navigation-panel table{
border-collapse: collapse;
}
#navigation-panel td:nth-child(1){
width:80px;
}
#navigation-panel td:nth-child(2) img{
width:40px;
height:40px;
}
#navigation-panel img{
width:100%;
height:100%;
}
#navigation-panel .image-placeholder{
height:40px;
}
#navigation-panel .health-bar {
border:1px solid #CACACA;
border-radius: 2px;
width:45px;
height:15px;
padding:2px;
}
#navigation-panel .result .hover{
background-color:#E3E3E3;
border-radius: 2px;
cursor:pointer;
}
#navigation-panel .no-results {
width:250px;
text-align:center;
}
#navigation-panel td {
padding: 2px 5px;
}