You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tipped.css 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #tipped {
  2. /* position & display are necessary */
  3. position:absolute;
  4. display:none;
  5. /* The rest are just to make it look good & can be changed as you want */
  6. border: 1px solid #404040;
  7. color: #404040;
  8. border-radius:5px;
  9. padding:3px;
  10. z-index: 99999;
  11. font-size: 0.9em;
  12. max-width: 50%;
  13. background: #f0f0f0;
  14. background: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); /* FF3.6+ */
  15. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
  16. background: -webkit-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
  17. background: -o-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Opera 11.10+ */
  18. background: -ms-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* IE10+ */
  19. background: linear-gradient(to bottom, #ffffff 0%,#e0e0e0 100%); /* W3C */
  20. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
  21. overflow: hidden;
  22. }
  23. /* The tip content gets inserted into this element */
  24. #tipped-content p, #tipped p { padding: 2px; margin: 0px; padding-bottom:0px; }
  25. /* This is the <div> that holds the close button/link. No styling is required, but you'll likely want some. */
  26. #tipped-closer-wrapper {
  27. display:none;
  28. text-align:center;
  29. margin: 0px;
  30. }
  31. /* The <span> that is the close button/link. No styling is required, but you'll likely want some. */
  32. #tipped-closer {
  33. display:none;
  34. border:2px outset #999;
  35. background-color:#CCC;
  36. }