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
/* dojox.mobile.ListItem */
.mblListItem {
    position: relative;
    overflow: hidden; /* for focus frame */
    padding: 0 8px;
    height: @mbl-list-item-height;
    list-style-type: none;
    line-height: @mbl-list-item-height;
    .tap-highlight-color(rgba(255,255,255,0));
    .mblListItem-styles;
    &.mblVariableHeight {
        padding: 11px 8px;
        height: auto;
        line-height: normal;
    }
}
.mblListItemSelected {
    .mblListItemSelected-styles;
    .mblDomButton {
        div {
            border-color: white;
        }
    }
}
.mblListItemLabelSelected {
    .mblListItemLabelSelected-styles;
}
.mblListItemChecked {
    .mblListItemChecked-styles;
}
 
.mblListItemChecked .mblListItemRightIcon {
    visibility: visible;
}
.mblListItemChecked .mblListItemUncheckIcon {
    position: absolute;
    visibility: hidden;
}
 
.mblListItemUnchecked .mblListItemRightIcon {
    visibility: hidden;
}
.mblListItemUnchecked .mblListItemUncheckIcon {
    visibility: visible;
}
 
.mblListItemDeleteIcon {
    position: relative;
    float: left;
    line-height: normal;
    margin-top: (@mbl-list-item-height - 29) / 2; // '29': Icon's height.
    margin-bottom: -(@mbl-list-item-height - 29) / 2;
    margin-right: 11px;
}
.mblListItemIcon {
    position: relative;
    float: left;
    line-height: normal;
    margin-top: (@mbl-list-item-height - 29) / 2;
    margin-bottom: -(@mbl-list-item-height - 29) / 2;
    margin-right: 11px;
}
.mblListItemRightIcon,
.mblListItemRightIcon2,
.mblListItemUncheckIcon {
    position: relative;
    float: right;
    line-height: normal;
    margin-top: (@mbl-list-item-height - 29) / 2;
    margin-bottom: -(@mbl-list-item-height - 29) / 2;
}
 
.mblListItemRightText {
    position: relative;
    float: right;
    line-height: normal;
    margin-right: 4px;
    .mblListItemRightText-styles;
}
.mblListItemLabel {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 100%;
}
.mblVariableHeight .mblListItemLabel {
    white-space: normal;
}
.mblListItemSubText {
    .mblListItemSubText-styles;
}
 
.mblListItemLayoutLeft {
    position: relative;
    float: left;
    margin-right: 11px;
}
.mblListItemLayoutCenter {
    position: absolute;
    width: 100%;
    text-align: center;
}
.mblListItemLayoutRight {
    position: relative;
    float: right;
}
 
/* dojox.mobile._EditableListMixin */
.mblListItemFloat {
    position: absolute;
    border: 1px solid gray;
    opacity: 0.5;
    .box-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
}