*/
.content-view:not(.tab).recording {
- padding: 15px;
+ display: flex;
+ flex-direction: column;
+ padding: 10px;
background-color: hsl(0, 0%, 90%);
}
+.content-view:not(.tab).recording > header {
+ margin-bottom: 10px;
+}
+
+.content-view:not(.tab).recording > header > .slider-container {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 4px 0;
+ background-color: white;
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+}
+
+.content-view:not(.tab).recording > header > .slider-container > * {
+ margin: 4px 8px;
+}
+
+.content-view:not(.tab).recording > header > .slider-container > input[type=range] {
+ flex: 1;
+ width: 100%;
+}
+
+.content-view:not(.tab).recording > header > .slider-container > input[type=range]::-webkit-slider-runnable-track {
+ height: 2px;
+ background-color: var(--border-color);
+ border-radius: 1px;
+}
+
+.content-view:not(.tab).recording > header > .slider-container > input[type=range]::-webkit-slider-thumb {
+ margin-top: -6px;
+}
+
.content-view:not(.tab).recording > .preview-container {
display: flex;
- align-items: center;
+ flex: 1;
justify-content: center;
+ align-items: center;
position: relative;
width: 100%;
height: 100%;