blob: fc21dd88bcf9a8ae053ee3cb02732bbddca81307 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* dojox.mobile.EdgeToEdgeCategory */
.mblEdgeToEdgeCategory {
position: relative;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin: 0px;
padding: 0px 10px;
height: 22px;
border-top: 1px solid #A4B0B9;
border-bottom: 1px solid #979DA3;
background-image: -webkit-gradient(linear, left top, left bottom, from(#8f9ea9), to(#b7c0c7));
font-family: Helvetica;
font-size: 16px;
font-weight: bold;
color: white;
line-height: 22px;
text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0px;
}
|