diff options
| author | bobzel <zzzman@gmail.com> | 2022-08-25 17:04:53 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-08-25 17:04:53 -0400 |
| commit | ef2cd862c062556008a1897b408399dedaee8210 (patch) | |
| tree | c6cc5d4fcbd0209f661e17256ca72e6f5e7de48e /src/client/views/collections/CollectionNoteTakingView.scss | |
| parent | 694aa8824d096247884a3e2d1c61f5509e7b1e7a (diff) | |
fixed issues with reloading notetaking view and having columns be exactly the same. fixed adding columns so that changes are actually propagated to the DB. SchemaHeaderFields are bad news...
Diffstat (limited to 'src/client/views/collections/CollectionNoteTakingView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionNoteTakingView.scss | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/src/client/views/collections/CollectionNoteTakingView.scss b/src/client/views/collections/CollectionNoteTakingView.scss index fe98f307e..5582fd391 100644 --- a/src/client/views/collections/CollectionNoteTakingView.scss +++ b/src/client/views/collections/CollectionNoteTakingView.scss @@ -1,7 +1,7 @@ @import '../global/globalCssVariables'; .collectionNoteTakingView-DocumentButtons { - display: flex; + display: none; justify-content: space-between; margin: auto; } @@ -51,6 +51,17 @@ display: flex; } +.collectionNoteTakingViewFieldColumn { + height: 100%; + display: flex; + flex-direction: colum; +} +.collectionNoteTakingViewFieldColumn:hover { + .collectionNoteTakingView-DocumentButtons { + display: flex; + } +} + // TODO:glr Turn this into a seperate class .documentButtonMenu { position: relative; @@ -82,7 +93,6 @@ top: 0; overflow-y: auto; overflow-x: hidden; - flex-wrap: wrap; transition: top 0.5s; > div { @@ -133,6 +143,16 @@ margin-left: -5; } + .collectionNoteTakingView-sectionDelete { + display: none; + position: absolute; + right: 0; + width: max-content; + height: max-content; + top: 10; + padding: 2; + } + // Documents in NoteTaking view .collectionNoteTakingView-columnDoc { display: flex; @@ -347,14 +367,6 @@ } } } - - .collectionNoteTakingView-sectionDelete { - position: absolute; - right: 25px; - top: 0; - height: 100%; - display: none; - } } .collectionNoteTakingView-sectionHeader:hover { |
