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
/* dojox.mobile.IconMenu */
.mblIconMenu {
    width: 100%;
    height: 100%;
    border-radius: @mbl-icon-menu-border-radius;
    text-align: center;
    .tap-highlight-color(rgba(255, 255, 255, 0));
    .mblIconMenu-styles;
}
 
/* dojox.mobile.IconMenuItem */
.mblIconMenuItem {
    float: left;
    list-style-type: none;
    .box-sizing(border-box);
    .mblIconMenuItem-styles;
}
.mblIconMenuItemIcon {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.mblIconMenuItemFirstColumn {
    border-left: none;
}
.mblIconMenuItemLastRow {
    border-bottom: none;
}
.mblIconMenuItemFirstRow {
    &.mblIconMenuItemFirstColumn {
        border-top-left-radius: @mbl-icon-menu-item-border-radius;
    }
    &.mblIconMenuItemLastColumn {
        border-top-right-radius: @mbl-icon-menu-item-border-radius;
    }
}
.mblIconMenuItemLastRow {
    &.mblIconMenuItemFirstColumn {
        border-bottom-left-radius: @mbl-icon-menu-item-border-radius;
    }
    &.mblIconMenuItemLastColumn {
        border-bottom-right-radius: @mbl-icon-menu-item-border-radius;
    }
}
.mblIconMenuItemAnchor {
    display: block;
    height: 100%;
    font-family: Helvetica;
    text-decoration: none;
    .mblIconMenuItemAnchor-styles;
  cursor: pointer;
}
.mblIconMenuItemTable {
    width: 100%;
    height: 100%;
    img {
        border: none;
    }
}
.mblIconMenuItemSel {
    .mblIconMenuItemSel-styles;
}