blob: f7b686838fe8014e252271ddc85a882e2e09a6f1 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/* Sample Editor */
/* Progress bars and inputs to create & edit samples */
.edit-sample > div {
display: inline-block;
vertical-align: middle;
}
.progress-bar {
border: 1px solid #b9b9b9;
width: 90%;
height: 3em;
position: relative;
background-color: #ddd;
-webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
.clip-line {
display: inline-block;
position: relative;
z-index: 5;
width: 1px;
height: 3em;
background-color: #222;
}
.drag-handle {
width: 2em;
height: 1em;
position: relative;
top: 1em;
left: -1em;
cursor: ew-resize;
background-color: yellow;
}
.start-drag-handle {
left: -2em;
}
.stop-drag-handle {
left: 0.05em;
}
.selected-bar {
width: 0;
height: 3em;
position: absolute;
top: 0;
background-color: #4087a0;
}
/* Key input */
.edit-sample .key-input {
margin-top: 0.1em;
}
|