-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSelectRegion.razor.css
More file actions
82 lines (67 loc) · 1.64 KB
/
SelectRegion.razor.css
File metadata and controls
82 lines (67 loc) · 1.64 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
.bb-region {
position: relative;
}
.bb-region:not(.disabled):hover .form-select-append {
display: none;
}
.popover-region .dropdown-menu {
--bs-dropdown-padding-y: 0;
}
.popover-region ul {
margin: 0;
padding: 0;
}
.popover-region li {
list-style: none;
transition: background-color .3s linear, color .3s linear;
}
.bb-region-header {
width: 400px;
border-bottom: 1px solid var(--bs-border-color);
}
.bb-region-header ul {
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
padding: .5rem;
font-weight: bold;
}
.bb-region-header ul li {
cursor: pointer;
padding: 3px 12px;
border-radius: var(--bs-border-radius);
}
.bb-region-header ul li.active {
background-color: #e3e3e3;
color: #000;
}
.bb-region-header ul li:hover {
background-color: #e3e3e3;
color: #000;
}
.bb-region-body {
padding: .5rem;
width: 400px;
}
.bb-region-body ul {
display: flex;
flex-wrap: wrap;
gap: 5px;
}
.bb-region-body .bb-region-body-item:not(.active) {
display: none;
}
.bb-region-body ul li {
padding: 3px 12px;
border-radius: var(--bs-border-radius);
cursor: pointer;
color: #777;
}
.bb-region-body ul li:hover {
background-color: #e9ecef;
color: #000;
}
.bb-region-body ul li.active {
background-color: #e3e3e3;
color: #000;
}