WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-04-21 487719b3188aaafcca49104b4ce62035dc29e953
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
/**
 * date range action
 * @author Tevin
 */
 
@import "../../common/sassMixin";
 
.c-data-range-float {
    @include position(fixed, 0 0, 90000);
    .at-drawer .at-drawer__content {
        width: 100%;
        min-height: 200px;
        bottom: auto;
        transform: translateY(-100%);
    }
    .at-drawer--show .at-drawer__content {
        transform: translateY(0%);
    }
    .c-data-range-drawer {
        .title {
            height: 100px;
            text-align: center;
            line-height: 100px;
            border-top: 1PX solid #eee;
            border-bottom: 1PX solid #d6e4ef;
            background-color: #f8f8f8;
        }
        .item {
            @include flexbox(flex, flex-start center);
            width: 100%;
            height: 96px;
            padding: 24px 0 24px 24px;
            white-space: nowrap;
            border-bottom: 1PX solid #d6e4ef;
            box-sizing: border-box;
            background-color: #fff;
            .label {
                flex: 2;
            }
            .filled,
            .empty {
                flex: 6;
                text-align: right;
            }
            .empty {
                color: #ccc;
            }
            .at-icon {
                flex: 1;
                font-size: 40px;
                text-align: center;
                color: #999;
            }
        }
        .date {
            padding-bottom: 24px;
            background-color: #f8f8f8;
        }
        .btn {
            background-color: #36a0e7;
            border: none;
        }
    }
}