-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
75 lines (75 loc) · 1.46 KB
/
main.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
body {
background-color: #2e2e2e;
color: #000000;
}
.autocomplete-suggestions {
background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 5px;
/*position: absolute;*/
width: calc(100% - 2px);
max-height: 200px;
overflow-y: auto;
z-index: 999;
padding: 5px;
box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.ui-autocomplete-category {
font-weight: bold;
color: #007bff;
padding: 5px 10px;
margin: 0;
}
.recent-searches-tag {
background-color: #e2e6ea;
border-radius: 15px;
padding: 5px 10px;
margin: 0 5px 5px 0;
display: inline-block;
color: #333;
}
.remove-tag {
cursor: pointer;
color: red;
margin-left: 5px;
}
.ui-menu-item-wrapper {
padding: 5px 10px;
cursor: pointer;
}
.ui-menu-item-wrapper:hover {
background-color: #e2e6ea;
}
.custom-select {
display: none;
}
.form-control {
border-radius: 5px;
border: 1px solid #ccc;
background-color: #f8f9fa;
color: #333;
}
.form-control:focus {
border-color: #007bff;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.autocomplete-item {
display: flex;
justify-content: space-between;
align-items: center;
}
.autocomplete-wrapper {
position: relative;
}
.select-arrow {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
display: none;
color: #007bff;
}
.form-control:focus + .select-arrow {
display: inline;
}