zhangyanpeng
2024-05-29 1f227a1cf627526701c652ba84bae3e430bba8d3
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
.btn-group {
    float: left;
    height: 100%;
    margin-left: 8px;
}
 
.btn {
    float: left;
    height: 22px;
    line-height: 22px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #eaeaea;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    border-left: 1px solid #d6d6d6;
    cursor: pointer;
}
 
.btn-active {
    color: #2d2727;
}
 
.btn-unactive {
    color: gray;
}
 
.btn-active:hover { 
    background-color: #dadada;    
}
 
.btn:first-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
 
.btn:last-of-type {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid #d6d6d6;    
}
 
/*================ pup menu =================  */
 
.popmenu {
    position: fixed;
    margin: 0;
    width: 150px;
    z-index: 9999;
    background: #fff;
    box-shadow: 3px 3px 6px #d5d5d5;
    font-size: 12px;
    padding: 0px;
}
 
.popmenu-item {
    text-align: left;
    box-sizing: border-box;
    display: block;
    width: 100%;
    line-height: 1.42857143;
    margin: 1px 0;
    padding: 6px 11px;
    color: #333;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1.42857143;
    border-bottom: solid 1px #c3c3c3;
    background: #f1efef;
}
 
.popmenu-item:hover {
    background: #e2e0db;
}
 
.popmenu li:last-child {
    border-bottom: none;
}