Pull elipsis to the right

folders
Rick Carlino 2019-12-18 15:14:58 -06:00
parent 2a701bdc63
commit fc7d0882b2
2 changed files with 8 additions and 2 deletions

View File

@ -15,6 +15,12 @@
}
}
.folder-block {
.bp3-popover-wrapper {
float: right;
}
}
.hardware-widget {
.bp3-popover-wrapper {
float: right;

View File

@ -118,14 +118,14 @@ const FolderNameEditor = (props: FolderNodeProps) => {
const STYLE_MOVE_ME: React.StyleHTMLAttributes<HTMLDivElement>["style"] = {
backgroundColor: "#ddd",
borderBottom: "1px solid #aaa",
display: "flex",
// display: "flex",
cursor: "pointer",
padding: "0.5rem",
margin: "0.5rem",
height: "3.5rem"
};
return <div style={STYLE_MOVE_ME}>
return <div className={"folder-block"} style={STYLE_MOVE_ME}>
<i className={faIcon} title={"Open/Close Folder"} onClick={toggle} />
<i className="fa fa-folder" style={{ color: node.color }} />
{namePart}