blob: 3399016a7883b777d88551f0de6c6418618a6bca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* dojox.mobile.RoundRectList */
.mblRoundRectList {
position: relative;
/* IE needs this */
margin: 8px 8px 12px;
padding: 0;
border: 1px solid #b5bcc7;
-webkit-border-radius: 5px;
background-color: #ffffff;
-webkit-box-shadow: 5px 5px 5px #b5bcc7;
}
.mblRoundRectList .mblListItem:first-child {
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
}
.mblRoundRectList .mblListItem:last-child {
border-bottom-width: 0px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
}
|