RoundRectList.css 554 B

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