blob: 968b029a51ac58f9a6eca132642904b295943527 (
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
29
30
31
|
/* dojox.mobile.ToolBarButton */
.mblToolBarButton {
float: left;
position: relative;
overflow: hidden;
cursor: pointer;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
margin: 0px 6px;
height: 22px;
border: 1px solid #555555;
font-family: Helvetica;
font-size: 13px;
font-weight: bold;
color: white;
line-height: 23px;
text-align: center;
}
div.mblToolBarButtonDomButton {
height: 23px;
}
.mblToolBarButtonIcon {
position: relative;
top: -2px;
padding: 0px;
}
.mblToolBarButtonSpriteIcon {
position: absolute;
}
.mblToolBarButtonText {
padding: 0px 10px;
}
|