You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
61 lines
1.3 KiB
/* dojox.mobile.IconMenu */ |
|
.mblIconMenu { |
|
width: 100%; |
|
height: 100%; |
|
border-radius: 6px; |
|
text-align: center; |
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); |
|
padding: 0; |
|
background-color: rgba(200, 200, 200, 0.45); |
|
border: 1px solid #007aff; |
|
} |
|
/* dojox.mobile.IconMenuItem */ |
|
.mblIconMenuItem { |
|
float: left; |
|
list-style-type: none; |
|
-webkit-box-sizing: border-box; |
|
box-sizing: border-box; |
|
} |
|
.mblIconMenuItemIcon { |
|
position: relative; |
|
margin-left: auto; |
|
margin-right: auto; |
|
} |
|
.mblIconMenuItemFirstColumn { |
|
border-left: none; |
|
} |
|
.mblIconMenuItemLastRow { |
|
border-bottom: none; |
|
} |
|
.mblIconMenuItemFirstRow.mblIconMenuItemFirstColumn { |
|
border-top-left-radius: 6px; |
|
} |
|
.mblIconMenuItemFirstRow.mblIconMenuItemLastColumn { |
|
border-top-right-radius: 6px; |
|
} |
|
.mblIconMenuItemLastRow.mblIconMenuItemFirstColumn { |
|
border-bottom-left-radius: 6px; |
|
} |
|
.mblIconMenuItemLastRow.mblIconMenuItemLastColumn { |
|
border-bottom-right-radius: 6px; |
|
} |
|
.mblIconMenuItemAnchor { |
|
display: block; |
|
height: 100%; |
|
font-family: Helvetica; |
|
text-decoration: none; |
|
font-size: 13px; |
|
color: #000000; |
|
cursor: pointer; |
|
} |
|
.mblIconMenuItemTable { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.mblIconMenuItemTable img { |
|
border: none; |
|
} |
|
.mblIconMenuItemSel { |
|
background-color: #3578b1; |
|
color: white; |
|
}
|
|
|