diff options
| author | mehekj <mehek.jethani@gmail.com> | 2021-10-28 15:12:34 -0400 |
|---|---|---|
| committer | mehekj <mehek.jethani@gmail.com> | 2021-10-28 15:12:34 -0400 |
| commit | 7f08f0fec32a28e1dc19f00021f99352f55a045c (patch) | |
| tree | a4f22a74ed74a72a763cbb69177ff2c8b535dbd1 /src/client/views/collections/CollectionStackedTimeline.scss | |
| parent | 4c698f82b6407715d360a4fde539838dd12d4d1a (diff) | |
fixed marker document decorations on scroll in zoomed timeline
Diffstat (limited to 'src/client/views/collections/CollectionStackedTimeline.scss')
| -rw-r--r-- | src/client/views/collections/CollectionStackedTimeline.scss | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.scss b/src/client/views/collections/CollectionStackedTimeline.scss index 843c5dcb5..19913350b 100644 --- a/src/client/views/collections/CollectionStackedTimeline.scss +++ b/src/client/views/collections/CollectionStackedTimeline.scss @@ -2,8 +2,24 @@ .timeline-container { height: calc(100% - 50px); - overflow-x: scroll; + overflow-x: auto; border: none; + background-color: $white; + border: 2px solid $dark-gray; + border-width: 0 2px 0 2px; +} + +::-webkit-scrollbar { + position: relative; + -webkit-appearance: none; + height: 5px; +} + +::-webkit-scrollbar-thumb { + position: relative; + -webkit-appearance: none; + height: 5px; + background-color: $medium-gray; } .collectionStackedTimeline { @@ -12,20 +28,6 @@ z-index: 1000; height: 100%; - ::-webkit-scrollbar { - position: relative; - -webkit-appearance: none; - height: 5px; - background-color: white; - } - - ::-webkit-scrollbar-thumb { - position: relative; - -webkit-appearance: none; - height: 5px; - background-color: $medium-gray; - } - .collectionStackedTimeline-trim-shade { position: absolute; height: 100%; |
