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
/* dojox.mobile.Carousel */
.mblCarousel {
    overflow: hidden;
    height: 300px;
}
.mblCarouselSlot {
    position: relative;
    float: left;
    text-align: left;
    box-sizing: border-box;
}
.mblCarouselSlotSelected {
}
.mblCarouselHeaderBar {
    background-color: #3a3a3b;
    color: #b1b1b1;
    font: bold 16px arial,helvetica,clean,sans-serif;
    padding: 1px;
}
.mblCarouselBtnContainer {
    float: right;
}
.mblCarouselBtn {
    height: 18px;
    width: 46px;
    font: bold 14px arial,helvetica,clean,sans-serif;
    color: gray;
    padding-top: 0px;
    margin: 0px 2px;
    border-width: 1px; /* workaround for android problem */
}
.mblCarouselTitle {
    margin: 2px 0px 2px 4px;
}
.mblCarouselHeaderBar .mblPageIndicator {
    float: right;
    width: auto;
    padding: 0px 20px;
}
.mblCarouselHeaderBar .mblPageIndicatorContainer {
    margin-left: 0px;
    margin-right: 0px;
}
.mblCarouselPages {
    position: relative;
    text-align: center;
}
 
/* dojox.mobile._CarouselItem */
.mblCarouselItem {
    text-align: center;
    .tap-highlight-color(rgba(255, 255, 255, 0));
}
.mblCarouselItemHeaderText {
    color: white;
    font: 14px arial,helvetica,clean,sans-serif;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 5px;
}
.mblCarouselItemFooterText {
    color: white;
    font: 14px arial,helvetica,clean,sans-serif;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 8px;
}
.mblCarouselItemImage {
    .box-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
    vertical-align: bottom;
}
.mblCarouselItemBlank {
    display: none;
}
.mblCarouselSlotSelected .mblCarouselItemImage {
    opacity: 0.6;
    .box-shadow(none);
}