You are here

acquia_lift.css in Acquia Lift Connector 7.3

/**
 * Support showing the entire adminstrative menu when lift tools are enabled
 */
body.lift #toolbar {
  margin-right: 20px; /* collapsed width of lift tools */
  padding-right: 0;
  -webkit-transition: margin 0.5s ease;
  -moz-transition: margin 0.5s ease;
  -o-transition: margin 0.5s ease;
  transition: margin 0.5s ease;
}

body.lift.lift-tools-active #toolbar {
  margin-right: 420px; /* expanded width of lift tools */
}

File

css/acquia_lift.css
View source
  1. /**
  2. * Support showing the entire adminstrative menu when lift tools are enabled
  3. */
  4. body.lift #toolbar {
  5. margin-right: 20px; /* collapsed width of lift tools */
  6. padding-right: 0;
  7. -webkit-transition: margin 0.5s ease;
  8. -moz-transition: margin 0.5s ease;
  9. -o-transition: margin 0.5s ease;
  10. transition: margin 0.5s ease;
  11. }
  12. body.lift.lift-tools-active #toolbar {
  13. margin-right: 420px; /* expanded width of lift tools */
  14. }