toolbar.css 328 B

1234567891011121314
  1. /**
  2. * @file
  3. * Visual styles for toolbar.
  4. *
  5. * Our global styling from base.css is causing the background color of hovered
  6. * <a> tags to apply to the toolbar as well. This file is used to reset that.
  7. */
  8. .toolbar-item:hover,
  9. .toolbar-item:focus,
  10. .toolbar-tray a:hover,
  11. .toolbar-tray a:focus {
  12. background-color: inherit;
  13. }