shortcut.icons.theme.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @file
  3. * Styling for the shortcut module icons.
  4. */
  5. /**
  6. * Toolbar tab icon.
  7. */
  8. .toolbar-bar .toolbar-icon-shortcut:before {
  9. background-image: url(../../images/core/icons/bebebe/star.svg);
  10. }
  11. .toolbar-bar .toolbar-icon-shortcut:active:before,
  12. .toolbar-bar .toolbar-icon-shortcut.is-active:before {
  13. background-image: url(../../images/core/icons/ffffff/star.svg);
  14. }
  15. /**
  16. * Add/remove links.
  17. */
  18. .shortcut-action__icon {
  19. background: transparent url(../../images/shortcut/favstar.svg) no-repeat left top;
  20. width: 20px;
  21. height: 20px;
  22. display: inline-block;
  23. vertical-align: -2px;
  24. }
  25. [dir="rtl"] .shortcut-action__icon {
  26. background-image: url(../../images/shortcut/favstar-rtl.svg);
  27. }
  28. .shortcut-action--add:hover .shortcut-action__icon,
  29. .shortcut-action--add:focus .shortcut-action__icon {
  30. background-position: -20px top;
  31. }
  32. .shortcut-action--remove .shortcut-action__icon {
  33. background-position: -40px top;
  34. }
  35. .shortcut-action--remove:focus .shortcut-action__icon,
  36. .shortcut-action--remove:hover .shortcut-action__icon {
  37. background-position: -60px top;
  38. }