Smoosh folder items, too

folders
Rick Carlino 2019-12-18 17:22:55 -06:00
parent f31c38158f
commit 0c9a04c6d8
2 changed files with 6 additions and 13 deletions

View File

@ -15,17 +15,8 @@
}
}
.popover-right {
// .bp3-popover-wrapper {
float: right;
// }
}
.popover-left {
// .bp3-popover-wrapper {
float: left;
// }
}
.popover-right { float: right; }
.popover-left { float: left; }
.hardware-widget {
.bp3-popover-wrapper {

View File

@ -154,7 +154,7 @@ const FolderNode = (props: FolderNodeProps) => {
onClick={props.onMoveStart}
isMoveTarget={props.movedSequenceUuid === x} />);
const children = <ul> {names} </ul>;
const children = <ul style={{ marginBottom: "0px" }}> {names} </ul>;
const mapper = (n2: FolderUnion) => <FolderNode
node={n2}
key={n2.id}
@ -241,7 +241,9 @@ export class Folders extends React.Component<FolderProps, FolderState> {
onClick={() => this.endSequenceMove(0)}
active={!!this.state.movedSequenceUuid} />
<this.Graph />
<ul> {this.rootSequences()} </ul>
<ul>
{this.rootSequences()}
</ul>
</div>;
}
}