diff options
| author | bobzel <zzzman@gmail.com> | 2024-08-15 23:16:09 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-08-15 23:16:09 -0400 |
| commit | 325aa35c4bd5f57240ead2ec5f22ea9c4f19d522 (patch) | |
| tree | c767fced5ef29ec216f138dad7dec2047612c51a /src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss | |
| parent | 196bfbcacd554e0d5e1d437588c5719606d21025 (diff) | |
fixed dropping on multi col/row collections with margins
Diffstat (limited to 'src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss')
| -rw-r--r-- | src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss | 49 |
1 files changed, 28 insertions, 21 deletions
diff --git a/src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss b/src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss index f44eacb2a..0d49fabaa 100644 --- a/src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss +++ b/src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss @@ -1,34 +1,41 @@ -.collectionMultirowView_contents { - display: flex; - //overflow: hidden; // bcz: turned of to allow highlighting to appear when there is no border (e.g, for a component of the slide template) - width: 100%; +.collectionMultirowView_drop { height: 100%; - flex-direction: column; + top: 0; + left: 0; + position: absolute; - .document-wrapper { + .collectionMultirowView_contents { display: flex; - flex-direction: row; + //overflow: hidden; // bcz: turned of to allow highlighting to appear when there is no border (e.g, for a component of the slide template) + width: 100%; height: 100%; - align-items: center; + flex-direction: column; - .label-wrapper { + .document-wrapper { display: flex; flex-direction: row; - justify-content: center; - height: 20px; + height: 100%; + align-items: center; + + .label-wrapper { + display: flex; + flex-direction: row; + justify-content: center; + height: 20px; + } } - } - .multiRowResizer { - cursor: ns-resize; - transition: 0.5s opacity ease; - display: flex; - flex-direction: row; + .multiRowResizer { + cursor: ns-resize; + transition: 0.5s opacity ease; + display: flex; + flex-direction: row; - .multiRowResizer-hdl { - width: 100%; - height: 100%; - transition: 0.5s background-color ease; + .multiRowResizer-hdl { + width: 100%; + height: 100%; + transition: 0.5s background-color ease; + } } } } |
