blob: c02a12ec0db58d7f0fa86ddfbeb43702cc48918c (
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
32
|
/* dojox.mobile.ToolBarButton */
.mblToolBarButton {
float: left;
position: relative;
overflow: hidden;
cursor: pointer;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
margin: 8px;
height: 30px;
border: 1px inset #b5bcc7;
-webkit-border-radius: 2px;
font-size: 14px;
font-family: Helvetica;
font-weight: normal;
text-shadow: none;
color: #131313;
line-height: 30px;
text-align: center;
}
.mblToolBarButton.mblArrowButtonText {
margin: 6px 8px;
}
.mblToolBarButtonIcon {
position: relative;
top: 2px;
}
.mblToolBarButtonSpriteIcon {
position: absolute;
}
.mblToolBarButtonText {
padding: 0px 10px;
}
|