summaryrefslogtreecommitdiffstats
path: root/assets/css/sample-editor.css
blob: f72111b79997e424ea0a69ef57aca6e36523e418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* Sample Editor */
/* Progress bars and inputs to create & edit samples */

.edit-sample > div {
	display: inline-block;
}

.progress-bar {
	border: 1px solid #777;
	width: 50%;
	height: 2em;
	position: relative;
	background-color: #ddd; /* change to something more pleasant later */
}

.clip-line {
	display: inline-block;
	position: relative;
	z-index: 5;
	width: 1px;
	height: 2em;
	background-color: #222;
}

.drag-handle {
	width: 2em;
	height: 1em;
	position: relative;
	top: 0.5em;
	left: -1em;
	cursor: ew-resize;
	background-color: yellow;
}

.selected-bar {
	width: 3em;/* testing purposes */
	height: 2em;
	position: absolute;
	top: 0;
	background-color: #4087a0;
}