-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVisualSearch.scss
212 lines (211 loc) · 4.59 KB
/
VisualSearch.scss
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
body{
font-family: 'Source Sans Pro', sans-serif;
}
.tokenDisplayUnit {
display : block;
float : left;
position : relative;
width : auto;
height : 30px;
border-radius: 15px;
padding : 1.5px 12.5px;
background : white;
border : 1px solid rgba(0,0,0,0.2);
color : rgba(0,0,0,0.2);
margin-left : 5px;
line-height : 21px;
box-sizing: border-box;
.autoCompleteList {
top: 22.5px;
box-sizing: border-box;
width: calc(100% - 20px);
margin: 0px 10px;
li {
border-color: rgba(0,0,0,0.2);
}
}
.closeIcon {
min-width : auto;
padding-left : 0px;
padding-right : 3px;
left : -5px;
font-size : 12px;
float : left;
top : 6px;
position : relative;
}
label {
width : auto;
height : 25px;
display : block;
position : relative;
float : left;
font-size : 12px;
font-weight : bold;
line-height : 21px;
color : rgba(0,0,0,0.2);
}
input {
width : auto;
height : 25px;
display : inline-block;
position : relative;
float : left;
font-size : 12px;
font-weight : normal;
background : transparent;
line-height : 26px;
padding : 0px 0px 0px 5px;
color : rgba(0,0,0,0.2);
border : none;
box-shadow: none !important;
&:focus {
outline : none !important;
}
}
}
.tokenList {
display : block;
float : left;
width : auto;
height : auto;
position : relative;
}
.searchAndSortContainer {
width : 100%;
height : auto;
height : 36px;
display : block;
position : relative;
float : left;
padding : 0px 0px;
margin : 0px 0px 25px 0px;
background : transparent;
border : rgba(0,0,0,0.2) 0.5px solid;
border-radius: 16px;
box-sizing: border-box;
}
.selectedFilterContainer {
position : relative;
float : left;
display : block;
height : 34px;
padding : 2px 0px;
width : auto;
box-sizing: border-box;
}
.activeFilterContainer {
position : relative;
float: left;
display: block;
height: 30px;
padding: 3px 0px;
min-width: 200px;
.activeInput {
width : auto;
float : left;
height : 26px;
padding : 0px 5px;
font-size : 12px;
font-weight: bold;
line-height: 26px;
position : relative;
background : transparent !important;
border : none !important;
&:focus{
outline: none;
background: transparent !important;
}
&::-webkit-input-placeholder {
font-weight: 400;
}
}
}
.searchIcon {
font-size : 12px;
position : relative;
display : block;
width : 20px;
height : 20px;
padding : 4px 4px;
float : left;
margin : 3px 3px 3px 4px;
box-sizing : border-box;
color : rgba(0,0,0,0.3);
}
.searchKey {
position : relative;
font-size : 12px;
display : block;
width : auto;
height : 26px;
float : left;
line-height : 26px;
text-transform : uppercase;
padding : 0px 10px;
margin : 2px 0px;
}
.inputLabelHolder {
display: inline-block;
position: absolute;
height: 30px;
min-width: 30px;
left: 0px;
top: 0px;
background: transparent;
}
.inputLabelHolderHot {
background: #0096ff;
color: white !important;
border-top-left-radius: 13px;
border-bottom-left-radius: 13px;
}
.tableSearchInput {
border: 1px solid rgba(0,0,0,0.4);
width: 100%;
display: block;
float: left;
position: relative;
padding: 5px 15px 5px 30px;
background: transparent;
height: 30px;
line-height: 30px;
font-size: 16px;
&:focus {
outline: none !important;
}
}
.autoCompleteList {
position: absolute;
top: 32px;
left: 0px;
width: auto;
display: block;
margin: 0px 0px 0px 0px;
padding: 0px 0px;
z-index: 10;
box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.1);
.autoCompleteListItem {
list-style-type: none;
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
color: rgba(0,0,0,0.4);
border:1px solid rgba(0,0,0,0.1);
border-top: none !important;
background: white;
cursor: pointer;
position: relative;
float: left;
width: 100%;
a {
position : relative;
float : left;
text-decoration : none;
color : inherit;
padding : 7px 7px;
width : 100%;
height : inherit;
}
}
}