diff --git a/frontend/src/components/ui/popover.ts b/frontend/src/components/ui/popover.ts index e9e88a64fd..0e1654adb5 100644 --- a/frontend/src/components/ui/popover.ts +++ b/frontend/src/components/ui/popover.ts @@ -1,4 +1,3 @@ -import { localized } from "@lit/localize"; import SlTooltip from "@shoelace-style/shoelace/dist/components/tooltip/tooltip.component.js"; import slTooltipStyles from "@shoelace-style/shoelace/dist/components/tooltip/tooltip.styles.js"; import { css } from "lit"; @@ -19,7 +18,6 @@ import { customElement, property } from "lit/decorators.js"; * @attr {Boolean} disabled */ @customElement("btrix-popover") -@localized() export class Popover extends SlTooltip { @property({ type: Boolean, reflect: true }) hoist = true; diff --git a/frontend/src/components/ui/table/table.stylesheet.css b/frontend/src/components/ui/table/table.stylesheet.css index 9e28a6f96b..b6536d5944 100644 --- a/frontend/src/components/ui/table/table.stylesheet.css +++ b/frontend/src/components/ui/table/table.stylesheet.css @@ -9,7 +9,8 @@ btrix-table-cell .rowClickTarget { max-width: 100%; } -btrix-table-cell sl-tooltip > * { +btrix-table-cell sl-tooltip > *, +btrix-table-cell btrix-popover > * { /* Place above .rowClickTarget::after overlay */ z-index: 1; } diff --git a/frontend/src/features/qa/page-list/ui/page-details.ts b/frontend/src/features/qa/page-list/ui/page-details.ts index 6c28b56b7a..44d81324a0 100644 --- a/frontend/src/features/qa/page-list/ui/page-details.ts +++ b/frontend/src/features/qa/page-list/ui/page-details.ts @@ -20,7 +20,7 @@ export function formatPercentage(n: number, fractionDigits = 2) { export const pageDetails = (page: ArchivedItemQAPage) => html`