diff options
| author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-08-05 22:25:44 -0500 |
|---|---|---|
| committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-08-05 22:25:44 -0500 |
| commit | 2df0503edefde20ba1b3c46c16788effb0a7560c (patch) | |
| tree | bac31bc2356e7de4aa1df43b382eb8c957ce969f /src/client/views/collections/CollectionDockingView.scss | |
| parent | ea855ecda2c3df9e5d0881d43e2fdbceb9dccafc (diff) | |
| parent | 6d8dfee38bd39b95396cbc97405516693116b58f (diff) | |
merge
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionDockingView.scss | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionDockingView.scss b/src/client/views/collections/CollectionDockingView.scss index 6ebd5103b..98babc3d2 100644 --- a/src/client/views/collections/CollectionDockingView.scss +++ b/src/client/views/collections/CollectionDockingView.scss @@ -20,6 +20,67 @@ } } +.miniPres:hover { + opacity: 1; +} + +.miniPres { + position: absolute; + overflow: hidden; + right: 10; + top: 10; + opacity: 0.1; + transition: all 0.4s; + /* border: solid 1px; */ + color: white; + /* box-shadow: black 0.4vw 0.4vw 0.8vw; */ + + .miniPresOverlay { + display: grid; + grid-template-columns: auto auto auto auto auto auto auto auto; + grid-template-rows: 100%; + height: 100%; + justify-items: center; + align-items: center; + + .miniPres-button-text { + display: flex; + height: 20; + font-weight: 400; + min-width: 100%; + border-radius: 5px; + align-items: center; + justify-content: center; + transition: all 0.3s; + } + + .miniPres-divider { + width: 0.5px; + height: 80%; + border-right: solid 2px #5a5a5a; + } + + .miniPres-button { + display: flex; + height: 20; + min-width: 20; + border-radius: 100%; + align-items: center; + justify-content: center; + transition: all 0.3s; + } + + .miniPres-button:hover { + background-color: #5a5a5a; + } + + .miniPres-button-text:hover { + background-color: #5a5a5a; + } + } +} + + .lm_title { margin-top: 3px; border-radius: 5px; |
