liuyg
2021-07-02 25ce610f6ecca7325e7a743dc032c4a76559c63d
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
@import url("../common/domButtons/DomButtonGrayArrow.css");
@import url("../common/domButtons/DomButtonDarkBlueCheck.css");
 
@import "variables.less";
@import "../common/ListItem.less";
 
.mblListItem {
    .default-vertical-margin;
 
    & .mblListItemLabel {
        &:active {
            color: @win-accent-color;
        }
 
        &:first-child {
            margin-left: @mbl-list-item-height + 10px;
            overflow: visible;
 
            &:before {
                content: '';
                width: @mbl-list-item-height;
                height: @mbl-list-item-height;
                background-color: @win-app-bar-color;
                position: absolute;
                margin-left: -@mbl-list-item-height - 10px;
          }
        }
    }
 
    & .mblListItemIcon {
        height: @mbl-list-item-height;
        width: @mbl-list-item-height;
        margin: 0 10px 0 0;
    }
 
    & .mblListItemEmptyIcon {
        padding-top: @mbl-list-item-height;
        background-color: @win-app-bar-color;
    }
}