summaryrefslogtreecommitdiff
path: root/bug/bug/select.css
blob: 1f67267d824a393623f61d160dc7efaf1574f821 (plain)
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

/* select */
.select {
    position: relative;
    z-index: 1;
}

.select ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 180px;
    width: 190px;
    overflow: auto;
}

.select .top-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.select .bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.select .top-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.select .bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}