You are here

acquia_lift_toolbar.css in Acquia Lift Connector 8.4

Same filename and directory in other branches
  1. 8.3 assets/acquia_lift_toolbar.css
/**
 * Support showing the entire adminstrative menu when lift tools are enabled
 */
body.toolbar-fixed.lift .toolbar-oriented,
body.lift .toolbar-oriented .toolbar-bar,
body.lift .toolbar-oriented .toolbar-tray {
  right: 20px; /* collapsed width of lift tools */
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  transition: right 0.5s ease;
}

body.toolbar-fixed.lift.lift-tools-active .toolbar-oriented,
body.lift.lift-tools-active .toolbar-oriented .toolbar-bar,
body.lift.lift-tools-active .toolbar-oriented .toolbar-tray {
  right: 420px; /* expanded width of lift tools */
}

File

assets/acquia_lift_toolbar.css
View source
  1. /**
  2. * Support showing the entire adminstrative menu when lift tools are enabled
  3. */
  4. body.toolbar-fixed.lift .toolbar-oriented,
  5. body.lift .toolbar-oriented .toolbar-bar,
  6. body.lift .toolbar-oriented .toolbar-tray {
  7. right: 20px; /* collapsed width of lift tools */
  8. -webkit-transition: right 0.5s ease;
  9. -moz-transition: right 0.5s ease;
  10. -o-transition: right 0.5s ease;
  11. transition: right 0.5s ease;
  12. }
  13. body.toolbar-fixed.lift.lift-tools-active .toolbar-oriented,
  14. body.lift.lift-tools-active .toolbar-oriented .toolbar-bar,
  15. body.lift.lift-tools-active .toolbar-oriented .toolbar-tray {
  16. right: 420px; /* expanded width of lift tools */
  17. }