diff options
| author | ljungster <parkerljung@gmail.com> | 2022-02-15 16:37:13 -0500 |
|---|---|---|
| committer | ljungster <parkerljung@gmail.com> | 2022-02-15 16:37:13 -0500 |
| commit | 1cf7bf9b1a18728eb07950a3f4eafa793e830834 (patch) | |
| tree | 22fc827df0a013787b01e8b4efcfa1ed01eb3c1c /src/client/views/collections/CollectionStackingView.scss | |
| parent | abab63f89344e5bbbf0731e81e3ab7ddb0942664 (diff) | |
| parent | a0365450297aa96bcc514114413fb983a34226f9 (diff) | |
merging
Diffstat (limited to 'src/client/views/collections/CollectionStackingView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionStackingView.scss | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionStackingView.scss b/src/client/views/collections/CollectionStackingView.scss index 3c3d040d2..8aa813f1e 100644 --- a/src/client/views/collections/CollectionStackingView.scss +++ b/src/client/views/collections/CollectionStackingView.scss @@ -131,9 +131,37 @@ margin-left: -5; } + // Documents in stacking view .collectionStackingView-columnDoc { - display: inline-block; - margin: auto; + display: flex; + // margin: auto; // Removed auto so that it is no longer center aligned - this could be something we change + position: relative; + + &:hover { + .hoverButtons{ + opacity: 1; + } + } + + .hoverButtons { + display: flex; + opacity: 0; + position: absolute; + height: 100%; + left: -35px; + justify-content: center; + align-items: center; + padding: 0px 10px; + + .buttonWrapper { + padding: 3px; + border-radius: 3px; + + &:hover { + background: rgba(0, 0, 0, 0.26); + } + } + } } .collectionStackingView-masonryDoc { |
