aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/AudioBox.scss
diff options
context:
space:
mode:
authorLionel Han <47760119+IGoByJoe@users.noreply.github.com>2020-07-12 19:25:53 -0700
committerLionel Han <47760119+IGoByJoe@users.noreply.github.com>2020-07-12 19:25:53 -0700
commit07eb07f394765e56898a21570849a01ab3c54304 (patch)
treebbff51db51d4f0c2694f138c335ea7981ba90000 /src/client/views/nodes/AudioBox.scss
parent090b7cd6b7f0487d34b399b94d0603c9911aad1b (diff)
added change markers and formatted time and added resizer
Diffstat (limited to 'src/client/views/nodes/AudioBox.scss')
-rw-r--r--src/client/views/nodes/AudioBox.scss27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/client/views/nodes/AudioBox.scss b/src/client/views/nodes/AudioBox.scss
index b1da40287..8eb92f126 100644
--- a/src/client/views/nodes/AudioBox.scss
+++ b/src/client/views/nodes/AudioBox.scss
@@ -118,7 +118,7 @@
.audiobox-timeline {
position: relative;
- height: 100%;
+ height: 80%;
width: 100%;
background: white;
border: gray solid 1px;
@@ -184,6 +184,8 @@
background: gray;
border-radius: 5px;
box-shadow: black 2px 2px 1px;
+ resize: horizontal;
+ overflow: auto;
.audiobox-marker {
position: relative;
@@ -216,6 +218,15 @@
.audio-marker:hover {
border: orange 2px solid;
}
+
+ .resizer {
+ position: absolute;
+ right: 0;
+ cursor: ew-resize;
+ height: 100%;
+ width: 1px;
+ z-index: 100;
+ }
}
.audiobox-marker-container1:hover,
@@ -234,6 +245,20 @@
}
}
}
+
+ .current-time {
+ position: absolute;
+ font-size: 12;
+ top: 70%;
+ left: 23%;
+ }
+
+ .total-time {
+ position: absolute;
+ left: 80%;
+ top: 70%;
+ font-size: 12;
+ }
}
}
}