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.
260 lines
5.0 KiB
260 lines
5.0 KiB
@import url("../common/domButtons/DomButtonColorButtons.css"); |
|
|
|
@import url("../common/domButtons/DomButtonBlackCircleCross.css"); |
|
/* dojox.mobile.IconContainer */ |
|
.mblIconContainer { |
|
margin: 20px 10px; |
|
padding: 0; |
|
} |
|
/* dojox.mobile.IconItem */ |
|
.mblIconItem { |
|
position: relative; |
|
overflow: hidden; |
|
/* for focus frame */ |
|
|
|
list-style-type: none; |
|
float: left; |
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); |
|
} |
|
.mblIconItemTerminator { |
|
list-style-type: none; |
|
clear: both; |
|
} |
|
.mblIconItemPane { |
|
list-style-type: none; |
|
background-color: white; |
|
color: black; |
|
} |
|
.mblIconArea { |
|
position: relative; |
|
height: 78px; |
|
font-family: Helvetica; |
|
font-size: 12px; |
|
text-align: center; |
|
margin-top: 5px; |
|
margin-bottom: 5px; |
|
width: 88px; |
|
} |
|
.mblIconArea img { |
|
vertical-align: middle; |
|
} |
|
.mblIconAreaInner { |
|
position: relative; |
|
height: 65px; |
|
line-height: 65px; |
|
text-align: center; |
|
} |
|
.mblIconItemDeleteIcon { |
|
position: absolute; |
|
top: -4px; |
|
left: 2px; |
|
} |
|
.mblIconItemSpriteIcon { |
|
position: absolute; |
|
} |
|
.mblContent { |
|
clear: both; |
|
padding-bottom: 20px; |
|
} |
|
table.mblClose { |
|
clear: both; |
|
cursor: pointer; |
|
} |
|
.mblVibrate { |
|
position: relative; |
|
-webkit-animation-duration: 0.5s; |
|
animation-duration: 0.5s; |
|
-webkit-animation-timing-function: ease-in-out; |
|
animation-timing-function: ease-in-out; |
|
-webkit-animation-iteration-count: infinite; |
|
animation-iteration-count: infinite; |
|
-webkit-animation-name: mblVibrate; |
|
animation-name: mblVibrate; |
|
-webkit-transform: rotate(0deg); |
|
transform: rotate(0deg); |
|
} |
|
.mblCloseContent { |
|
-webkit-animation-duration: 0.3s; |
|
animation-duration: 0.3s; |
|
-webkit-animation-timing-function: ease-in-out; |
|
animation-timing-function: ease-in-out; |
|
-webkit-animation-name: mblShrink; |
|
animation-name: mblShrink; |
|
-webkit-transform: scale(0.01); |
|
transform: scale(0.01); |
|
} |
|
.mblCloseContent.mblShrink0 { |
|
-webkit-animation-name: mblShrink0; |
|
animation-name: mblShrink0; |
|
} |
|
.mblCloseContent.mblShrink1 { |
|
-webkit-animation-name: mblShrink1; |
|
animation-name: mblShrink1; |
|
} |
|
.mblCloseContent.mblShrink2 { |
|
-webkit-animation-name: mblShrink2; |
|
animation-name: mblShrink2; |
|
} |
|
.mblCloseContent.mblShrink3 { |
|
-webkit-animation-name: mblShrink3; |
|
animation-name: mblShrink3; |
|
} |
|
/* dojox.mobile._IconItemPane */ |
|
.mblIconItemPaneHeading { |
|
position: relative; |
|
clear: both; |
|
overflow: hidden; |
|
margin-top: 0px; |
|
padding-left: 40px; |
|
height: 25px; |
|
border-top: 1px solid #f1f3f4; |
|
border-bottom: 1px solid #717d85; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#e0e4e7), to(#b4bec6), color-stop(0.5, #c4ccd2), color-stop(0.5, #bfc8ce)); |
|
background-image: linear-gradient(to bottom, #e0e4e7 0%, #c4ccd2 50%, #bfc8ce 50%, #b4bec6 100%); |
|
font-family: Helvetica; |
|
font-size: 14px; |
|
color: white; |
|
line-height: 26px; |
|
text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0px; |
|
text-overflow: ellipsis; |
|
white-space: nowrap; |
|
} |
|
.mblIconItemPaneIcon { |
|
position: absolute; |
|
top: -2px; |
|
left: 1px; |
|
} |
|
@-webkit-keyframes mblVibrate { |
|
0% { |
|
-webkit-transform: rotate(-2deg); |
|
bottom: -1px; |
|
left: -1px; |
|
} |
|
25% { |
|
-webkit-transform: rotate(1deg); |
|
bottom: 2px; |
|
left: 1px; |
|
} |
|
50% { |
|
-webkit-transform: rotate(-1deg); |
|
bottom: -2px; |
|
left: -1px; |
|
} |
|
75% { |
|
-webkit-transform: rotate(2deg); |
|
bottom: 2px; |
|
left: 1px; |
|
} |
|
100% { |
|
-webkit-transform: rotate(-2deg); |
|
bottom: -1px; |
|
left: -1px; |
|
} |
|
} |
|
@keyframes mblVibrate { |
|
0% { |
|
transform: rotate(-2deg); |
|
bottom: -1px; |
|
left: -1px; |
|
} |
|
25% { |
|
transform: rotate(1deg); |
|
bottom: 2px; |
|
left: 1px; |
|
} |
|
50% { |
|
transform: rotate(-1deg); |
|
bottom: -2px; |
|
left: -1px; |
|
} |
|
75% { |
|
transform: rotate(2deg); |
|
bottom: 2px; |
|
left: 1px; |
|
} |
|
100% { |
|
transform: rotate(-2deg); |
|
bottom: -1px; |
|
left: -1px; |
|
} |
|
} |
|
@-webkit-keyframes mblShrink { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: scale(0.01); |
|
} |
|
} |
|
@keyframes mblShrink { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: scale(0.01); |
|
} |
|
} |
|
@-webkit-keyframes mblShrink0 { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: translate(-40%, -70%) scale(0.01); |
|
} |
|
} |
|
@keyframes mblShrink0 { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: translate(-40%, -70%) scale(0.01); |
|
} |
|
} |
|
@-webkit-keyframes mblShrink1 { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: translate(-14%, -70%) scale(0.01); |
|
} |
|
} |
|
@keyframes mblShrink1 { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: translate(-14%, -70%) scale(0.01); |
|
} |
|
} |
|
@-webkit-keyframes mblShrink2 { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: translate(14%, -70%) scale(0.01); |
|
} |
|
} |
|
@keyframes mblShrink2 { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: translate(14%, -70%) scale(0.01); |
|
} |
|
} |
|
@-webkit-keyframes mblShrink3 { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: translate(40%, -70%) scale(0.01); |
|
} |
|
} |
|
@keyframes mblShrink3 { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: translate(40%, -70%) scale(0.01); |
|
} |
|
}
|
|
|