zhongrj
2025-11-25 b89962006164a462404b79a738bee8cbb6d7fe7e
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
.paginator{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
 
    .toolbar{
        i{
            opacity: 0.8;
        }
        margin-right: 8px;
        &.no-margin{
            margin-right: 0;
        }
    }
    .btn-group.open > .dropdown-menu{
        top: 24px;
        padding-right: 4px;
        a{
            border: none;
        }
    }
 
    .search{
        height: 25px;
        margin-left: 7px;
        margin-right: 4px;
        padding-left: 4px;
        padding-right: 4px;
        border-width: 1px;
        border-radius: 3px;
        display: inline-block;
        max-width: 210px;
    }
 
    .pagination>li{
        display: inline-block;
    }
 
    .search-popup{
        min-width: 256px;
 
        li{
            display: flex;
            button{
                width: 27px;
                height: 25px;
                i{
                    position: relative;
                    top: -4px;
                    left: -3px;
                }
            }
        }
    }
 
    @media (max-width: 576px) { 
        .search-popup{
            min-width: 180px;
        }
    }
 
    .clear-search{
        margin-top: 1px;
        font-weight: bold;
        margin-right: 8px;
        .query{
            font-weight: normal;
        }
    }
}