contextual.module.css 318 B

123456789101112131415161718
  1. /**
  2. * @file
  3. * Generic base styles for contextual module.
  4. */
  5. .contextual-region {
  6. position: relative;
  7. }
  8. .contextual .trigger:focus {
  9. /* Override the .focusable position: static */
  10. position: relative !important;
  11. }
  12. .contextual-links {
  13. display: none;
  14. }
  15. .contextual.open .contextual-links {
  16. display: block;
  17. }