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