All files / src/pages/flowsheet-page/economics/results-panel/tables resultStyles.ts

100% Statements 7/7
100% Branches 0/0
100% Functions 0/0
100% Lines 7/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16    76x   76x 76x 76x   76x   76x 76x        
import { cn } from "@/lib/utils";
 
export const RESULT_TABLE_TEXT_CLASS = "text-[13px] leading-5";
export const RESULT_TABLE_BUTTON_CLASS =
  "h-auto w-full max-w-full min-w-0 justify-start gap-1 px-0 py-0 text-left text-[13px] font-normal leading-5 hover:bg-transparent hover:text-foreground [&>span]:block [&>span]:min-w-0 [&>span]:truncate";
export const RESOURCE_TABLE_CELL_CLASS = "min-w-0 overflow-hidden";
export const ACCORDION_TABLE_PANEL_CLASS = "bg-background py-1";
export const RESULT_HIGHLIGHTABLE_ROW_CLASS =
  "scroll-mt-28 transition-[background-color,box-shadow] duration-700 ease-out focus:outline-none";
export const RESULT_SELECTED_ROW_CLASS =
  "bg-primary/10 ring-1 ring-inset ring-primary";
export const RESULT_NESTED_ROW_CLASS = cn(
  "grid w-full items-center py-1.5",
  RESULT_HIGHLIGHTABLE_ROW_CLASS,
);