-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_search_box.css
More file actions
143 lines (123 loc) · 2.66 KB
/
Copy path_search_box.css
File metadata and controls
143 lines (123 loc) · 2.66 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#search_box {
position: absolute;
line-height: 100%;
top: 46px !important;
left: -265px !important;
}
#search_box_arrow {
position: absolute;
top: -9px;
left: 275px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-bottom: 10px solid #024d61;
border-right: 10px solid transparent;
}
#search_box_arrow_back {
position: absolute;
left: 274px;
top: -13px;
width: 0;
height: 0;
border-left: 12px solid transparent;
border-bottom: 12px solid #fff;
border-right: 12px solid transparent;
}
#search_box_container {
width: 300px;
background: #024d61;
box-shadow: 3px 3px 10px 1px #888888;
}
#search_bar {
width: inherit;
height: 40px;
background: #024d61; }
#search_icon {
float: left;
width: 40px;
height: 40px;
background-image: url("../images/search_icon.png");
background-repeat: no-repeat;
background-position: center; }
#search_input_field {
float: left;
margin-top: 11px;
margin-left: 25px;
border: none;
outline: none;
background: transparent;
font-size: 10pt;
width: 225px;
color: whitesmoke;
border-bottom: 1px solid whitesmoke; }
#search_input_field::-webkit-input-placeholder {
color: rgba(245, 245, 245, 0.7); }
#search_caret {
position: relative;
left: 278px;
top: 18px;
width: 0;
height: 0;
border-left: 6px solid transparent;
border-top: 8px solid #c8e5ed;
border-right: 6px solid transparent; }
#search_result_container {
display: hidden;
background: #3d7d8e;
width: 300px; }
.search_result_category {
display: table; }
.search_result_title {
float: left;
width: 65px;
text-align: right;
font-size: 12pt;
color: whitesmoke;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin-top: 5px;
margin-right: 10px; }
.search_result_content_list {
float: left;
width: 225px;
display: table-cell;
background: #c8e5ed; }
.search_result_item {
padding: 5px;
width: 215px;
display: table;
cursor: pointer; }
.search_result_item:hover {
background: #f1f1f1; }
.search_result_image {
float: left;
width: 43px;
height: 43px; }
.search_result_image img {
width: inherit;
height: inherit; }
.search_result_right_container {
float: left;
margin-left: 4px;
padding: 4px;
display: table-cell;
width: 159px; }
#search_result_post .search_result_right_container {
width: auto; }
.search_result_item_title {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 200px;
padding-top: 2px;
padding-left: 8px;
font-size: 10pt;
color: #3d7d8e; }
.search_result_item_info {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 9pt;
max-width: 200px; }