settings_tray.motion.css 695 B

12345678910111213141516171819
  1. /**
  2. * @file
  3. * Motion effects for Settings Tray module.
  4. *
  5. * Motion effects are in a separate file so that they can be easily turned off
  6. * to improve performance if desired.
  7. */
  8. /* Transition the edit icon in the toolbar. */
  9. #toolbar-bar.button.toolbar-icon.toolbar-icon.toolbar-icon-edit:before {
  10. transition: all 0.7s ease;
  11. }
  12. /* Transition the editables on the page, their contextual links and their hover states. */
  13. .dialog-off-canvas-main-canvas .contextual,
  14. .dialog-off-canvas-main-canvas .js-settings-tray-edit-mode .settings-tray-editable,
  15. .dialog-off-canvas-main-canvas.js-off-canvas-dialog-open .js-settings-tray-edit-mode .settings-tray-editable {
  16. transition: all 0.7s ease;
  17. }