blob: 7299e04468bc876ef67507d25148c44382dc7aab (
plain)
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
|
/* dojox.mobile.ToolBarButton */
.mblToolBarButton {
float: left;
position: relative;
overflow: hidden;
cursor: pointer;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
margin: 6px;
height: 29px;
border: 1px inset #9CACC0;
font-family: Helvetica;
font-size: 13px;
font-weight: bold;
color: white;
line-height: 29px;
text-align: center;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
.mblToolBarButtonIcon {
position: relative;
}
.mblToolBarButtonSpriteIcon {
position: absolute;
}
.mblToolBarButtonText {
padding: 0px 10px;
}
|