aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionStackedTimeline.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-09-13 10:11:49 -0400
committerbobzel <zzzman@gmail.com>2022-09-13 10:11:49 -0400
commit36b17b5b0878eeb2eb23fd4c5078e06fcc002aaf (patch)
tree33c1a3fb50381d09bf89bd43d869544a3c52c7b6 /src/client/views/collections/CollectionStackedTimeline.scss
parent7696d85b7b737a29cab189f4c65f395c5de132c7 (diff)
parentbb9f0d4dec849bdaf2d358d060707b2ed1ed677d (diff)
Merge branch 'sharing-jenny' of https://github.com/brown-dash/Dash-Web into sharing-jenny
Diffstat (limited to 'src/client/views/collections/CollectionStackedTimeline.scss')
-rw-r--r--src/client/views/collections/CollectionStackedTimeline.scss17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.scss b/src/client/views/collections/CollectionStackedTimeline.scss
index bb98e1c99..5a107d2ca 100644
--- a/src/client/views/collections/CollectionStackedTimeline.scss
+++ b/src/client/views/collections/CollectionStackedTimeline.scss
@@ -1,7 +1,8 @@
-@import "../global/globalCssVariables.scss";
+@import '../global/globalCssVariables.scss';
-.timeline-container {
+.collectionStackedTimeline-timelineContainer {
height: 100%;
+ position: absolute;
overflow-x: auto;
overflow-y: hidden;
border: none;
@@ -9,13 +10,14 @@
border-width: 0 2px 0 2px;
&:hover {
+ cursor: default;
.collectionStackedTimeline-hover {
display: block;
}
}
}
-.timeline-container:hover + .timeline-hoverUI {
+.collectionStackedTimeline-timelineContainer:hover + .timeline-hoverUI {
display: flex;
justify-content: center;
}
@@ -72,7 +74,8 @@
border-width: 1px;
}
- .collectionStackedTimeline-current, .collectionStackedTimeline-hover {
+ .collectionStackedTimeline-current,
+ .collectionStackedTimeline-hover {
width: 1px;
height: 100%;
position: absolute;
@@ -107,14 +110,15 @@
height: 100%;
width: 10px;
pointer-events: all;
- cursor: ew-resize;
z-index: 100;
}
.collectionStackedTimeline-resizer {
right: 0;
+ cursor: e-resize;
}
.collectionStackedTimeline-left-resizer {
left: 0;
+ cursor: w-resize;
}
}
@@ -141,5 +145,6 @@
transform: translate(0, -100%);
font-weight: bold;
+ pointer-events: none;
}
-} \ No newline at end of file
+}