/**
 * @file    status/worker-common.css - css support for worker-common.js
 * @author  Wes Garland, wes@distributive.network
 * @date    Feb 2026
 */

/** Behaviour for busy() / unbusy() */
BODY {
  transition: all 150ms ease-in;
}
BODY[busy] {
  cursor:          wait;
  filter:          brightness(90%) saturate(70%);
  backdrop-filter: brightness(90%) saturate(70%);
  transition:      all 2500ms ease-out;
}
BODY[busy] > * {
  pointer-events: none;
}
