formtips.css 765 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .form-type-checkbox .formtips-wrapper {
  2. display: inline-block;
  3. }
  4. .description.formtips-processed p {
  5. margin-bottom: 0;
  6. }
  7. form fieldset .formtips-processed,
  8. .formtips-processed,
  9. form .form-item div.formtips-processed {
  10. position: absolute;
  11. background-color: #111;
  12. color: #ddd;
  13. padding: 5px;
  14. border: 5px solid #777;
  15. opacity: 0.9;
  16. z-index: 100;
  17. }
  18. a.formtip {
  19. background: url(help.png) no-repeat 0 0;
  20. width: 12px;
  21. height: 12px;
  22. display: inline-block;
  23. margin-left: 4px;
  24. }
  25. a.formtip:hover {
  26. background-position: 0 -12px;
  27. text-decoration: none;
  28. }
  29. /* @todo move these theme-specific rules to the theme */
  30. a.formtip:hover {
  31. border: none !important;
  32. }
  33. .description.formtips-processed {
  34. line-height: 1.35;
  35. letter-spacing: 0.05em;
  36. }