diff options
| author | Geireann <60007097+geireann@users.noreply.github.com> | 2022-02-15 16:06:18 -0500 |
|---|---|---|
| committer | Geireann <60007097+geireann@users.noreply.github.com> | 2022-02-15 16:06:18 -0500 |
| commit | bdccc7c147dbb985bff5286e318718e48fd7cc62 (patch) | |
| tree | 3cb4c22a0ad5716901940c53d43dd3594e6bdb08 /src/client/views/collections/CollectionStackingView.scss | |
| parent | 66fb0e4bbf88a5e9bcb5869dd7c8b8a7714de024 (diff) | |
updates
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 2f002736d..a77eb6b8a 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 { |
