@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* Search result highlighting */
mark {
  background-color: var(--color-warning);
  color: var(--color-warning-content);
  border-radius: 2px;
  padding: 0 1px;
}

/* Ticket detail panels */
.ticket-panel {
  max-height: 77vh;
  overflow-y: auto;
}

/* Sidebar tooltips: position to the left to avoid horizontal scroll */
.tooltip-right:before {
  left: auto !important;
  right: 100% !important;
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}
.tooltip-right:after {
  left: auto !important;
  right: 100% !important;
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

.task-blocked {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    oklch(var(--wa) / 0.07) 4px,
    oklch(var(--wa) / 0.07) 8px
  );
}
