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.
67 lines
2.0 KiB
67 lines
2.0 KiB
/* dojox.mobile.IconMenu */ |
|
.mblIconMenu { |
|
width: 100%; |
|
height: 100%; |
|
border-radius: 10px; |
|
text-align: center; |
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); |
|
padding: 0; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 102, 119, 0.85)), to(rgba(4, 4, 4, 0.85)), color-stop(0.35, rgba(22, 22, 30, 0.85))); |
|
background-image: linear-gradient(to bottom, rgba(102, 102, 119, 0.85) 0%, rgba(22, 22, 30, 0.85) 35%, rgba(4, 4, 4, 0.85) 100%); |
|
border: 2px solid #9a9a9e; |
|
border-top-color: #f2f2f3; |
|
-webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5); |
|
box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5); |
|
} |
|
/* dojox.mobile.IconMenuItem */ |
|
.mblIconMenuItem { |
|
float: left; |
|
list-style-type: none; |
|
-webkit-box-sizing: border-box; |
|
box-sizing: border-box; |
|
border-left: 1px solid #6b6c6f; |
|
border-bottom: 1px solid #6b6c6f; |
|
} |
|
.mblIconMenuItemIcon { |
|
position: relative; |
|
margin-left: auto; |
|
margin-right: auto; |
|
} |
|
.mblIconMenuItemFirstColumn { |
|
border-left: none; |
|
} |
|
.mblIconMenuItemLastRow { |
|
border-bottom: none; |
|
} |
|
.mblIconMenuItemFirstRow.mblIconMenuItemFirstColumn { |
|
border-top-left-radius: 10px; |
|
} |
|
.mblIconMenuItemFirstRow.mblIconMenuItemLastColumn { |
|
border-top-right-radius: 10px; |
|
} |
|
.mblIconMenuItemLastRow.mblIconMenuItemFirstColumn { |
|
border-bottom-left-radius: 10px; |
|
} |
|
.mblIconMenuItemLastRow.mblIconMenuItemLastColumn { |
|
border-bottom-right-radius: 10px; |
|
} |
|
.mblIconMenuItemAnchor { |
|
display: block; |
|
height: 100%; |
|
font-family: Helvetica; |
|
text-decoration: none; |
|
font-size: 11px; |
|
color: #b8bbc0; |
|
cursor: pointer; |
|
} |
|
.mblIconMenuItemTable { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.mblIconMenuItemTable img { |
|
border: none; |
|
} |
|
.mblIconMenuItemSel { |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(139, 157, 229, 0.6)), to(rgba(10, 54, 233, 0.8)), color-stop(0.6, rgba(10, 54, 233, 0.8))); |
|
background-image: linear-gradient(to bottom, rgba(139, 157, 229, 0.6) 0%, rgba(10, 54, 233, 0.8) 60%, rgba(10, 54, 233, 0.8) 100%); |
|
}
|
|
|