bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
#zalert {
    position: fixed;
    bottom: 5px;
    right: 5px;
    margin-left: 5px;
    z-index: 99;
}
.zalert {
    text-align: right;
    margin-top: 10px;
    padding: 15px;
    border-radius: 5px;
    float: right;
    clear: right;
}
.zalert-red {
    color: white;
    background-color: #DA4453;
}
.zalert-green {
    color: white;
    background-color: #37BC9B;
}
.zalert-blue {
    color: white;
    background-color: #4A89DC;
}
.zalert-yellow {
    color: white;
    background-color: #F6BB42;
}
.zalert-orange {
    color: white;
    background-color: #E9573F;
}
.buttons {
    margin-bottom: 20px;
    display: block;
}
.buttons a {
    margin: auto;
    margin-bottom: 10px;
    float: none !important;
    text-align: center;
}
.buttons a span {
    padding-left: 0px;
}
#zalert {
    text-shadow: none;
}
@media (max-width: 450px) {
.buttons {
    margin-bottom: 334px;
}
}
span.zalert_normal_icon {
    float: left;
    height: 25px;
    width: 25px;
    background-image: url('../images/alert_normal_icon.png');
    background-position: left center;
    background-size: 15px 15px;
    background-repeat: no-repeat;
}
span.zalert_error_icon {
    float: left;
    height: 25px;
    width: 25px;
    background-image: url('../images/alert_error_icon.png');
    background-position: left center;
    background-size: 15px 15px;
    background-repeat: no-repeat;
}
span.zalert_normal_icon + a.zalert-link {
    color: red;
}
span.zalert_error_icon + a.zalert-link {
    color: yellow;
}