Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions src/BloomBrowserUI/bookEdit/css/editMode.less
Original file line number Diff line number Diff line change
Expand Up @@ -1303,6 +1303,14 @@ body.hideAllCKEditors .cke_chrome {
top: -8px;
width: 100%;
}
// Very narrow pages need more space for the #drag-activity-tab-control
.above-page-control-container:has(+ .Device16x9Portrait),
.above-page-control-container:has(+ .QuarterLetterPortrait),
.above-page-control-container:has(+ .A6Portrait) {
#drag-activity-tab-control {
top: -22px;
}
}

// we want :blank, but it's not in browsers yet. So we simulate it by a mutation observer
// that adds a class to the editable when it is empty.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ export const DragActivityTabControl: React.FunctionComponent<{
`}
>
{promptButtonContent && (
<div>
<div
css={css`
margin-right: 20px;
`}
>
{/* // This button is only visible in start mode. I'd prefer
to control that here but it's difficult. visibility
is controlled with #promptButton rules in editMode.less. */}
Expand Down