You are here

stlib_picker.css in ShareThis 7.2

Same filename and directory in other branches
  1. 7 stlib_picker.css

Styling for stlib_picker.

File

stlib_picker.css
View source
  1. /**
  2. * @file
  3. * Styling for stlib_picker.
  4. */
  5. .stp_pickerLeft,
  6. .stp_pickerArrow,
  7. .stp_pickerRight {
  8. display: block;
  9. float: left;
  10. height: 254px;
  11. width: 250px;
  12. border: 1px solid black;
  13. -moz-border-radius: 4px;
  14. -webkit-border-radius: 4px;
  15. border-radius: 4px;
  16. overflow: hidden;
  17. }
  18. .stp_pickerArrow {
  19. width: 92px;
  20. border: none;
  21. margin-top: 40px;
  22. }
  23. .stp_header {
  24. display: block;
  25. font-size: 1.25em;
  26. border-bottom: 1px solid black;
  27. padding: 8px;
  28. background-color: #115511;
  29. color: #115511;
  30. background: #eeeeee;
  31. background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 90%);
  32. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(90%,#cccccc));
  33. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
  34. }
  35. .stp_ulLeft,
  36. .stp_ulRight {
  37. display: block;
  38. overflow-y: scroll;
  39. height: 215px;
  40. margin: 0px !important;
  41. padding: 0px;
  42. list-style: none;
  43. background-color: #eeeeee;
  44. }
  45. .stp_li {
  46. border-bottom: 1px solid #ccc;
  47. padding: 0px;
  48. margin: 0px;
  49. padding-top: 5px;
  50. background: #ffffee;
  51. vertical-align: center;
  52. }
  53. .stp_li img {
  54. display: inline-block;
  55. margin: 0px;
  56. padding: 0px;
  57. margin-left: 5px;
  58. }
  59. .stp_liText {
  60. display: inline-block;
  61. vertical-align: top;
  62. margin: 0px;
  63. padding: 5px;
  64. margin-left: 10px;
  65. font-size: 1.2em;
  66. font-family: sans-serif;
  67. overflow: hidden;
  68. }
  69. .stp_arrow {
  70. display: block;
  71. height: 35px;
  72. width: 35px;
  73. margin: 30px;
  74. margin-bottom: 10px;
  75. margin-top: 10px;
  76. overflow: hidden;
  77. }
  78. .stp_li:hover {
  79. background: #ddddcc;
  80. }
  81. .stp_select,
  82. .stp_select:hover {
  83. background: #ccccbb;
  84. }
  85. .stp_up:hover {
  86. margin-top: -152px;
  87. }
  88. .stp_left {
  89. margin-top: -37px;
  90. }
  91. .stp_left:hover {
  92. margin-top: -189px;
  93. }
  94. .stp_right {
  95. margin-top: -75px;
  96. }
  97. .stp_right:hover {
  98. margin-top: -227px;
  99. }
  100. .stp_down {
  101. margin-top: -114px;
  102. }
  103. .stp_down:hover {
  104. margin-top: -266px;
  105. }
  106. .stp_clear {
  107. clear: both;
  108. width: 500px;
  109. }