-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSelectCity.razor.css
More file actions
55 lines (47 loc) · 1.11 KB
/
SelectCity.razor.css
File metadata and controls
55 lines (47 loc) · 1.11 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
.bb-city {
position: relative;
}
.bb-city:not(.disabled):hover .form-select-append {
display: none;
}
.dropdown-menu {
--bs-dropdown-padding-y: .5rem;
--bs-dropdown-padding-x: .5rem;
max-width: 400px;
max-height: 400px;
overflow-y: auto;
}
.dropdown-menu ul {
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 5px;
}
.dropdown-menu li {
list-style: none;
transition: background-color .3s linear, color .3s linear;
cursor: pointer;
padding: 3px 12px;
border-radius: var(--bs-border-radius);
color: #777;
}
.dropdown-menu li:hover {
background-color: #e9ecef;
color: #000;
}
.dropdown-menu li.active {
background-color: #e3e3e3;
color: #000;
}
.bb-region-city-item:not(:last-child) {
margin-bottom: 3px;
padding-bottom: 3px;
border-bottom: 1px solid var(--bs-border-color);
}
.bb-region-city-title {
padding: 3px 12px;
color: #000;
font-weight: bold;
cursor: pointer;
}