whyclj
2019-06-29 82c1e7ced425f43781b0cd01290fad298f51e623
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* primary-table td */
.primary-table.data-table-collapsible table td {
    border-bottom: 1px solid #ccc;
}
 
/* echarts容器 */
.graph-container {
    height: 100%;
    background-color: #FFFFFF;
}
.graph-inner {
    height: 100%;
}
.graph-inner .graph{
    height: 100%;
}
 
/* margin */
.no-margin {
    margin: 0;
}
/* text-align */
.center {
    text-align: center;
}
 
.my-modal {
    display: none;
    position: absolute;
    top: calc(var(--f7-page-navbar-offset, 0px) + var(--f7-page-toolbar-top-offset, 0px) + var(--f7-page-subnavbar-offset, 0px) + var(--f7-page-searchbar-offset, 0px) + var(--f7-page-content-extra-padding-top, 0px));
    right: 0;
    bottom: calc(var(--f7-page-toolbar-bottom-offset, 0px) + var(--f7-safe-area-bottom) + var(--f7-page-content-extra-padding-bottom, 0px));
    left: 0;
    z-index: 13000;
}
.my-modal.my-modal-show {
    display: block;
}
.my-modal-rel {
    position: relative;
    height: 100%;
}
.my-modal-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #000;
    opacity: 0.1;
}
.my-modal-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 28%;
    bottom: 0;
    z-index: 1;
    background-color: #fff;
}
.my-modal.my-modal-show .my-modal-container {
    animation-name: mymodalshow;
    animation-duration: .3s;
    animation-timing-function: linear;
}
.my-modal-header {
    background-image: var(--f7-navbar-bg-image, var(--f7-bars-bg-image));
    background-color: var(--f7-navbar-bg-color, var(--f7-bars-bg-color, var(--f7-theme-color)));
    border-bottom: 1px solid #ccc;
}
.my-modal-header .title {
    line-height: 28px;
}
.my-modal-content {
    height: 500px;
    overflow-y: auto;
}
.my-modal-footer {
    background-image: var(--f7-navbar-bg-image, var(--f7-bars-bg-image));
    background-color: var(--f7-navbar-bg-color, var(--f7-bars-bg-color, var(--f7-theme-color)));
}
.my-modal-footer .row{
    border-top: 1px solid #ccc;
    padding: 8px;
}
 
@keyframes mymodalshow
{
    0% {right: 100%;}
    25% {right: 76%;}
    50% {right: 52%;}
    100% {right: 28%;}
}
 
.my-pages {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    width: 32px;
    height: 32px;
}
.my-pages-tmp-hide {
    display:none;
}
.my-pages.my-pages-hide {
    display: none;
}
.my-pages.my-pages-pre {
    left: 8px
}
.my-pages.my-pages-next {
    right: 8px
}
.my-pages:active {
    color: #FF0000;
}