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.
39 lines
888 B
39 lines
888 B
/* dojox.mobile.Heading */ |
|
.mblHeading { |
|
position: relative; |
|
margin: 0; |
|
width: 100%; |
|
overflow: hidden; |
|
white-space: nowrap; |
|
text-overflow: ellipsis; |
|
z-index: 1; |
|
padding: 0; |
|
height: 42px; |
|
font-family: Helvetica; |
|
font-size: 20px; |
|
font-weight: bold; |
|
text-align: center; |
|
line-height: 44px; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dedede)); |
|
background-image: linear-gradient(to bottom, #f6f6f6 0%, #dedede 100%); |
|
border-top: 1px solid #c0c0c0; |
|
border-bottom: 1px solid #c0c0c0; |
|
color: #000000; |
|
text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0; |
|
} |
|
.mblHeading * { |
|
z-index: 2; |
|
} |
|
.mblHeadingDivTitle { |
|
position: absolute; |
|
width: 100%; |
|
display: none; |
|
left: 0; |
|
z-index: 1; |
|
} |
|
.mblHeadingCenterTitle .mblHeadingDivTitle { |
|
display: block; |
|
} |
|
.mblHeadingCenterTitle .mblHeadingSpanTitle { |
|
display: none; |
|
}
|
|
|