icons.css 439 B

123456789101112131415161718192021
  1. /**
  2. * @file
  3. * Visual styles for icons.
  4. */
  5. .icon-help {
  6. padding: 1px 0 1px 20px; /* LTR */
  7. background: url(../../../../../../../misc/help.png) 0 50% no-repeat; /* LTR */
  8. }
  9. [dir="rtl"] .icon-help {
  10. padding: 1px 20px 1px 0;
  11. background-position: 100% 50%;
  12. }
  13. .feed-icon {
  14. display: block;
  15. overflow: hidden;
  16. width: 16px;
  17. height: 16px;
  18. text-indent: -9999px;
  19. background: url(../../../../../../../misc/feed.svg) no-repeat;
  20. }