Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/BloomBrowserUI/bookEdit/toolbox/ToolboxRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,20 @@ export const ToolboxRoot: React.FunctionComponent = () => {
font-weight: normal;
}
}

// Those same adopted bodies also keep the
// header icon jQuery-UI's _createIcons()
// prepends to every header: a
// ui-icon-triangle-1-e sprite. As a body
// (not a header) it renders as a stray
// right-pointing arrowhead in the top-left
// corner. The rule above only neutralized the
// header background/border, not this child
// icon, so hide it too. (BL-16538)
div[data-toolid]
span.ui-accordion-header-icon {
display: none !important;
}
`}
>
{section.liveToolBodyElement ? (
Expand Down