icons.css 421 B

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