diff options
| author | Andy Rickert <andrew_rickert@brown.edu> | 2020-04-02 17:42:18 -0700 |
|---|---|---|
| committer | Andy Rickert <andrew_rickert@brown.edu> | 2020-04-02 17:42:18 -0700 |
| commit | fb329b1a8abca361d831c7ec1f1a9ea0f3d410cf (patch) | |
| tree | e09138a0544fe3814b1bd1e95d59bc4c0e96f5ed /src/client/views/collections/CollectionTimeView.scss | |
| parent | 3a1dac48c00dbe81142da90f8b52bfae02ce1921 (diff) | |
| parent | b4958eac84339dd7a88c964a9c52e89481048f55 (diff) | |
merge
Diffstat (limited to 'src/client/views/collections/CollectionTimeView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionTimeView.scss | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionTimeView.scss b/src/client/views/collections/CollectionTimeView.scss new file mode 100644 index 000000000..fa7c87f4e --- /dev/null +++ b/src/client/views/collections/CollectionTimeView.scss @@ -0,0 +1,93 @@ +.collectionTimeView, +.collectionTimeView-pivot { + display: flex; + flex-direction: row; + position: absolute; + height: 100%; + width: 100%; + overflow: hidden; + + .collectionTimeView-backBtn { + background: green; + display: inline; + } + + .collectionFreeform-customText { + text-align: left; + } + + .collectionFreeform-customDiv { + position: absolute; + } + + .collectionTimeView-thumb { + position: absolute; + width: 30px; + height: 30px; + transform: rotate(45deg); + display: inline-block; + background: gray; + bottom: 0; + margin-bottom: -17px; + border-radius: 9px; + opacity: 0.25; + } + + .collectionTimeView-thumb-min { + margin-left: 25%; + } + + .collectionTimeView-thumb-max { + margin-left: 75%; + } + + .collectionTimeView-thumb-mid { + margin-left: 50%; + } + + .collectionTimeView-flyout { + width: 400px; + display: block; + text-align: left; + + .collectionTimeView-flyout-item { + background-color: lightgray; + text-align: left; + display: inline-block; + position: relative; + width: 100%; + } + } + + .pivotKeyEntry { + position: absolute; + top: 5px; + right: 5px; + z-index: 10; + pointer-events: all; + padding: 5px; + border: 1px solid black; + display:none; + span { + margin-left : 10px; + } + } + + .collectionTimeView-innards { + display: inline-block; + width: calc(100% - 200px); + height: 100%; + } +} + +.collectionTimeView-pivot { + .collectionFreeform-customText { + text-align: center; + } +} + +.collectionTimeView:hover, .collectionTimeView-pivot:hover { + .pivotKeyEntry { + display:unset; + } +}
\ No newline at end of file |
