2015-10-30 14:59:50 +00:00
|
|
|
@import "client/common";
|
|
|
|
|
|
|
|
|
|
.ConfigureTracks {
|
|
|
|
|
|
|
|
|
|
.inputs-view {
|
|
|
|
|
border-width:1px 0;
|
|
|
|
|
border-color:$ColorText;
|
|
|
|
|
border-style:solid;
|
|
|
|
|
padding:20px 0;
|
|
|
|
|
height:220px;
|
|
|
|
|
|
|
|
|
|
.live-tracks {
|
2015-12-23 03:28:19 +00:00
|
|
|
margin-bottom:5px;
|
2015-11-09 21:33:04 +00:00
|
|
|
height:165px;
|
2015-10-30 14:59:50 +00:00
|
|
|
overflow:auto;
|
|
|
|
|
a {
|
|
|
|
|
margin-left:3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.live-input {
|
|
|
|
|
display:inline-block;
|
2015-11-09 21:33:04 +00:00
|
|
|
&:before {
|
|
|
|
|
content: '('
|
|
|
|
|
}
|
|
|
|
|
&:after {
|
|
|
|
|
content: ')'
|
|
|
|
|
}
|
2015-10-30 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
.live-track {
|
|
|
|
|
margin-bottom:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.delete-live-track {
|
|
|
|
|
margin-left:20px;
|
|
|
|
|
}
|
|
|
|
|
.assignment {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
width:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-track-info {
|
|
|
|
|
@include border_box_sizing;
|
|
|
|
|
width:60%;
|
|
|
|
|
display:inline-block;
|
2015-11-09 21:33:04 +00:00
|
|
|
|
|
|
|
|
&.one {
|
|
|
|
|
.live-input {
|
|
|
|
|
width:50%;
|
|
|
|
|
@include border_box_sizing;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.two {
|
|
|
|
|
.live-input {
|
|
|
|
|
max-width:40%;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
@include border_box_sizing;
|
|
|
|
|
&:nth-of-type(1) {
|
|
|
|
|
padding-right:5px;
|
|
|
|
|
}
|
|
|
|
|
&:nth-of-type(2) {
|
|
|
|
|
padding-left:5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.track-type-label {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
white-space:nowrap;
|
|
|
|
|
padding-right:7px;
|
2015-10-30 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plugin-info {
|
|
|
|
|
@include border_box_sizing;
|
|
|
|
|
width:30%;
|
|
|
|
|
display:inline-block;
|
2015-11-09 21:33:04 +00:00
|
|
|
white-space:nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow:hidden;
|
2015-10-30 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plugin-instrument {
|
|
|
|
|
@include border_box_sizing;
|
|
|
|
|
width:10%;
|
|
|
|
|
display:inline-block;
|
|
|
|
|
text-align:center;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
vertical-align:middle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.outputs-view {
|
|
|
|
|
border-width:0 0 1px;
|
|
|
|
|
border-color:$ColorText;
|
|
|
|
|
border-style:solid;
|
|
|
|
|
padding:20px 0;
|
|
|
|
|
|
|
|
|
|
.assignment {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
width:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.output-tracks {
|
|
|
|
|
height:73px;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
a {
|
|
|
|
|
margin-left:3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.output-track {
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.output-track-info {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.output {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
margin-bottom:0 !important;
|
2015-11-09 21:33:04 +00:00
|
|
|
&:before {
|
|
|
|
|
content: '('
|
|
|
|
|
}
|
|
|
|
|
&:after {
|
|
|
|
|
content: ')'
|
|
|
|
|
}
|
2015-10-30 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
h3 {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
font-size:14px;
|
|
|
|
|
margin:0 0 20px;
|
|
|
|
|
@include border_box_sizing;
|
|
|
|
|
&.session-audio-inputs-header {
|
|
|
|
|
color:white;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
width:60%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.session-audio-outputs-header {
|
|
|
|
|
color:white;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
width:60%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.plugin-header {
|
|
|
|
|
width:30%;
|
|
|
|
|
}
|
|
|
|
|
&.instrument-header {
|
|
|
|
|
width:10%;
|
|
|
|
|
text-align:center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.live-track-actions {
|
|
|
|
|
display:block;
|
2015-11-09 21:33:04 +00:00
|
|
|
padding-left: 17px;
|
|
|
|
|
margin-top: 5px;
|
2015-10-30 14:59:50 +00:00
|
|
|
a {
|
|
|
|
|
font-size:12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|