nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
118
/* dojox.mobile.IconContainer */
.mblIconContainer {
    margin: 20px 10px;
    padding: 0;
}
 
/* dojox.mobile.IconItem */
.mblIconItem {
    position: relative;
    overflow: hidden; /* for focus frame */
    list-style-type: none;
    float: left;
    .tap-highlight-color(rgba(255, 255, 255, 0));
}
.mblIconItemTerminator {
    list-style-type: none;
    clear: both;
}
.mblIconItemPane {
    list-style-type: none;
    .mblIconItemSub-styles;
}
.mblIconArea {
    position: relative;
    height: 78px;
    font-family: Helvetica;
    font-size: 12px;
    text-align: center;
    .mblIconArea-styles;
    img {
        vertical-align: middle;
    }
}
.mblIconAreaInner {
    position: relative;
    height: 65px;
    line-height: 65px;
    text-align: center;
}
.mblIconItemDeleteIcon {
    position: absolute;
    .mblIconItemDeleteIcon-styles;
}
.mblIconItemSpriteIcon {
    position: absolute;
}
.mblContent {
    clear: both;
    padding-bottom: 20px;
}
table.mblClose {
    clear: both;
    cursor: pointer;
}
.mblVibrate{
    position: relative;
    .animation-duration(.5s);
    .animation-timing-function(ease-in-out);
    .animation-iteration-count(infinite);
    .animation-name(mblVibrate);
    .transform(rotate(0deg));
}
.mblCloseContent{
    .animation-duration(.3s);
    .animation-timing-function(ease-in-out);
    .animation-name(mblShrink);
    .transform(scale(0.01));
    &.mblShrink0{
        .animation-name(mblShrink0);
    }
    &.mblShrink1{
        .animation-name(mblShrink1);
    }
    &.mblShrink2{
        .animation-name(mblShrink2);
    }
    &.mblShrink3{
        .animation-name(mblShrink3);
    }
}
 
/* dojox.mobile._IconItemPane */
.mblIconItemPaneHeading {
    position: relative;
    clear: both;
    overflow: hidden;
    margin-top: 0px;
    padding-left: 40px;
    height: 25px;
    border-top: 1px solid #f1f3f4;
    border-bottom: 1px solid #717d85;
    .background-image-linear-gradient-top-bottom-2-stops(#e0e4e7, #b4bec6, 0.5, #c4ccd2, 0.5, #bfc8ce);
    font-family: Helvetica;
    font-size: 14px;
    color: white;
    line-height: 26px;
    text-shadow: rgba(0,0,0,0.6) 0px -1px 0px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mblIconItemPaneIcon {
    position: absolute;
    top: -2px;
    left: 1px;
}
 
@-webkit-keyframes mblVibrate { .keyframes-vibrate-webkit(); }
@keyframes         mblVibrate { .keyframes-vibrate       (); }
@-webkit-keyframes mblShrink  { .keyframes-transform-from-to-webkit(scale(1), scale(0.01)); }
@keyframes         mblShrink  { .keyframes-transform-from-to       (scale(1), scale(0.01)); }
@-webkit-keyframes mblShrink0 { .keyframes-transform-from-to-webkit(scale(1), translate(-40%,-70%) scale(0.01)); }
@keyframes         mblShrink0 { .keyframes-transform-from-to       (scale(1), translate(-40%,-70%) scale(0.01)); }
@-webkit-keyframes mblShrink1 { .keyframes-transform-from-to-webkit(scale(1), translate(-14%,-70%) scale(0.01)); }
@keyframes         mblShrink1 { .keyframes-transform-from-to       (scale(1), translate(-14%,-70%) scale(0.01)); }
@-webkit-keyframes mblShrink2 { .keyframes-transform-from-to-webkit(scale(1), translate(14%,-70%)  scale(0.01)); }
@keyframes         mblShrink2 { .keyframes-transform-from-to       (scale(1), translate(14%,-70%)  scale(0.01)); }
@-webkit-keyframes mblShrink3 { .keyframes-transform-from-to-webkit(scale(1), translate(40%,-70%)  scale(0.01)); }
@keyframes         mblShrink3 { .keyframes-transform-from-to       (scale(1), translate(40%,-70%)  scale(0.01)); }