Advertisement
Adam_Martin

Untitled

May 12th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.62 KB | None | 0 0
  1. .list_container {
  2.     background-color : #ffffff;
  3.     width        : 300px;
  4.     min-height   : 20px;
  5.     max-height   : 100px;
  6.     border       : solid #000 1px;
  7.     overflow-x   : hidden;
  8.     overflow-y   : auto;
  9.     display      : none;
  10.     position     : absolute;
  11. }
  12.  
  13. .list_container__listing {
  14.     padding-left : 5px;
  15.     margin       : 0px;
  16. }
  17.  
  18.  
  19. .list_container__listing_item {
  20.     color        : #000077;
  21.     font-family  : Verdana;
  22.     font-weight  : bold;
  23.     font-size    : 9pt;
  24.     list-style   : none;
  25. }
  26.  
  27. .active-item {
  28.   background-color : #c7c7c7;
  29. }
  30.  
  31. .selected-item {
  32.   background-color : #e7e7e7;
  33.   font-weight: bold;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement