@use '../global/globalCssVariables.module.scss' as global; .collectionTreeView-container { transform-origin: top left; } .collectionTreeView-dropTarget { border-color: transparent; border-style: solid; border-radius: inherit; box-sizing: border-box; height: 100%; width: 100%; position: relative; top: 0px; // background: global.$light-gray; font-size: 13px; overflow: auto; user-select: none; cursor: default; touch-action: pan-y; ul { list-style: none; padding-left: global.$TREE_BULLET_WIDTH; margin-bottom: 1px; // otherwise vertical scrollbars may pop up for no apparent reason.... > .contentFittingDocumentView { width: unset; height: unset; } &:hover { cursor: ns-resize; } } .no-indent { padding-left: 0px; //width: max-content; } .no-indent-outline { padding-left: 0px; width: 100%; } .editableView-container { font-weight: bold; } .delete-button { color: global.$medium-gray; // float: right; margin-left: 15px; // margin-top: 3px; display: inline; } .editableView-input, .editableView-container-editing { display: block; text-overflow: ellipsis; white-space: nowrap; } } .collectionTreeView-keyHeader { font-style: italic; font-size: 8pt; margin-left: 3px; opacity: 0; pointer-events: none; } .collectionTreeView-contents { display: flex; flex-direction: column; } .collectionTreeView-titleBar { width: 100%; .contentFittingDocumentView { display: block; // makes titleBar take up full width of the treeView (flex doesn't for some reason) } } .collectionTreeView-keyHeader:hover { background: #797777; cursor: pointer; } .collectionTreeView-subtitle { font-style: italic; font-size: 8pt; color: global.$medium-gray; } .docContainer { position: relative; text-overflow: ellipsis; white-space: pre-wrap; min-width: 10px; grid-column: 2; } .docContainer-system { font-variant: all-small-caps; border-radius: 5px; background: grey; color: white; padding-left: 3px; padding-right: 3px; padding-bottom: 2px; }