diff options
| author | Melissa Zhang <mzhang19096@gmail.com> | 2020-09-30 22:01:44 -0600 |
|---|---|---|
| committer | Melissa Zhang <mzhang19096@gmail.com> | 2020-09-30 22:01:44 -0600 |
| commit | 09aab9558a26a2d7c8e3d485aca578960af72821 (patch) | |
| tree | b53bdc6f2fcb269b74a097f56bfeec248e7f918b /src/client/views/collections/TabDocView.scss | |
| parent | bd827b97c719abeadf243ba4f8b2ba417badb65b (diff) | |
| parent | 852ddf70b7ed3d027eb5cb8415df4df77b8652a6 (diff) | |
pull from master
Diffstat (limited to 'src/client/views/collections/TabDocView.scss')
| -rw-r--r-- | src/client/views/collections/TabDocView.scss | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/client/views/collections/TabDocView.scss b/src/client/views/collections/TabDocView.scss new file mode 100644 index 000000000..edf556c9f --- /dev/null +++ b/src/client/views/collections/TabDocView.scss @@ -0,0 +1,54 @@ +input.lm_title:focus, +input.lm_title +{ + max-width: unset !important; + transition-delay: unset; + width: 100%; + cursor: text; +} +input.lm_title { + transition-delay: 0.35s; + width: 100px; + cursor: pointer; +} +.tabDocView-drag { + margin: auto; +} +.miniMap-hidden, +.miniMap { + position: absolute; + overflow: hidden; + right: 10; + bottom: 10; + border: solid 1px; + box-shadow: black 0.4vw 0.4vw 0.8vw; + width: 100%; + height: 100%; + transition: all 0.5s; + + .miniOverlay { + width: 100%; + height: 100%; + position: absolute; + + .miniThumb { + background: #25252525; + position: absolute; + } + } +} +.miniMap-hidden { + position: absolute; + bottom: 0; + right: 0; + width: 45px; + height: 45px; + background: white; + transform: translate(20px, 20px) rotate(45deg); + border-radius: 30px; + padding: 2px; + > svg { + margin-top: 3px; + transform: translate(0px, 7px); + } +}
\ No newline at end of file |
