shortcut.css 570 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * @file
  3. * Visual styles for the Shortcut action link in Bartik.
  4. */
  5. .shortcut-wrapper {
  6. margin: 2.2em 0 1.1em 0; /* Same as usual .page-title margin. */
  7. }
  8. .shortcut-wrapper .page-title {
  9. float: left; /* LTR */
  10. margin: 0;
  11. }
  12. [dir="rtl"] .shortcut-wrapper .page-title {
  13. float: right;
  14. }
  15. .shortcut-action {
  16. border-bottom: none;
  17. margin-left: 0.5em; /* LTR */
  18. padding-top: 0.35em;
  19. }
  20. [dir="rtl"] .shortcut-action {
  21. margin-left: 0;
  22. margin-right: 0.5em;
  23. }
  24. .shortcut-action:hover,
  25. .shortcut-action:active,
  26. .shortcut-action:focus {
  27. border-bottom: none;
  28. }