2018-05-30 21:39:38 +12:00
|
|
|
|
2018-07-01 21:08:35 +12:00
|
|
|
.output-control {
|
2018-05-30 21:39:38 +12:00
|
|
|
position: relative;
|
|
|
|
|
|
2018-07-06 12:58:19 +12:00
|
|
|
&.disabled {
|
|
|
|
|
& > .control {
|
|
|
|
|
opacity: 0.2;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
&__inner {
|
2018-05-30 21:39:38 +12:00
|
|
|
position: absolute;
|
2019-08-17 21:57:06 +12:00
|
|
|
bottom: 48px;
|
2018-05-31 21:34:50 +12:00
|
|
|
right: -150px;
|
|
|
|
|
width: 300px;
|
2018-05-30 21:39:38 +12:00
|
|
|
text-align: left;
|
2018-05-31 21:34:50 +12:00
|
|
|
border-radius: 3px;
|
2018-05-30 21:39:38 +12:00
|
|
|
box-shadow: 2px 3px 6px rgba(0,0,0,0.2);
|
2018-06-01 20:44:30 +12:00
|
|
|
z-index: 9;
|
2018-05-30 21:39:38 +12:00
|
|
|
|
2021-01-07 14:38:00 +11:00
|
|
|
@include theme('dark') {
|
|
|
|
|
color: colour('white');
|
|
|
|
|
background: lighten(colour('grey'), 4%);
|
2019-12-11 07:07:27 +13:00
|
|
|
|
|
|
|
|
&:after {
|
2021-01-07 14:38:00 +11:00
|
|
|
background: lighten(colour('grey'), 4%);
|
2019-12-11 07:07:27 +13:00
|
|
|
}
|
2019-12-09 07:17:45 +13:00
|
|
|
}
|
|
|
|
|
|
2020-05-05 16:50:07 +12:00
|
|
|
@include theme('light') {
|
2021-01-07 14:38:00 +11:00
|
|
|
color: colour('darkest_grey');
|
|
|
|
|
background: colour('white');
|
2019-12-11 07:07:27 +13:00
|
|
|
|
|
|
|
|
&:after {
|
2021-01-07 14:38:00 +11:00
|
|
|
background: colour('white');
|
2019-12-11 07:07:27 +13:00
|
|
|
}
|
2019-12-09 07:17:45 +13:00
|
|
|
}
|
|
|
|
|
|
2018-05-30 21:39:38 +12:00
|
|
|
&:after {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -3px;
|
2018-05-31 21:34:50 +12:00
|
|
|
right: 159px;
|
2018-05-30 21:39:38 +12:00
|
|
|
}
|
|
|
|
|
|
2018-08-27 21:17:36 +12:00
|
|
|
.no-results {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
2018-09-27 20:43:42 +12:00
|
|
|
}
|
2018-08-27 21:17:36 +12:00
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
&__stream {
|
2021-10-13 21:10:59 +13:00
|
|
|
&__header {
|
|
|
|
|
margin: 0.8rem;
|
2019-11-15 08:27:03 +13:00
|
|
|
display: flex;
|
2021-10-13 21:10:59 +13:00
|
|
|
flex-flow: row;
|
2019-11-15 08:27:03 +13:00
|
|
|
align-items: center;
|
|
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
.flag {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
2018-05-30 21:39:38 +12:00
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
&__thumbnail {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
2019-11-15 08:27:03 +13:00
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
&__title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
padding-left: 0.4em;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
2018-10-02 16:58:15 +13:00
|
|
|
}
|
|
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
&__content {
|
|
|
|
|
padding-left: 0.8rem;
|
|
|
|
|
overflow-x: hidden;
|
2018-10-02 16:58:15 +13:00
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
.details {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-19 21:39:01 +13:00
|
|
|
}
|
2019-11-15 08:27:03 +13:00
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
&__group {
|
|
|
|
|
margin: 1rem 0.8rem 0.8rem 0.8rem;
|
|
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
opacity: 0.5;
|
2021-10-15 14:04:38 +13:00
|
|
|
}
|
2021-10-13 21:10:59 +13:00
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
.dropdown-field {
|
|
|
|
|
margin-left: auto;
|
2021-10-13 21:10:59 +13:00
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
&__label {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
text-align: center;
|
|
|
|
|
opacity: 0.5;
|
2021-10-13 21:10:59 +13:00
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
.icon {
|
|
|
|
|
font-size: 1em;
|
2021-10-17 21:09:26 +13:00
|
|
|
}
|
2021-10-13 21:10:59 +13:00
|
|
|
}
|
|
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
&__options {
|
|
|
|
|
top: auto;
|
|
|
|
|
bottom: 20px;
|
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
top: auto;
|
|
|
|
|
bottom: -3px;
|
|
|
|
|
}
|
2021-10-13 21:10:59 +13:00
|
|
|
}
|
2021-10-19 21:39:01 +13:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__clients {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: colour('off_white');
|
|
|
|
|
@include theme('dark') {
|
|
|
|
|
background: colour('grey');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
|
border-top: 1px solid colour('white');
|
|
|
|
|
@include theme('dark') {
|
|
|
|
|
border-color: colour('soft_grey');
|
|
|
|
|
}
|
2021-10-13 21:10:59 +13:00
|
|
|
|
2021-10-19 21:39:01 +13:00
|
|
|
&:first-child {
|
|
|
|
|
border-top: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
|
padding: 0.8rem 0 0 0.8rem;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__volume {
|
|
|
|
|
padding-right: 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.dropdown-field {
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
|
padding: 2px !important;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
font-size: 0.9em;
|
2021-10-13 21:10:59 +13:00
|
|
|
}
|
2021-10-19 21:39:01 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__options {
|
|
|
|
|
top: auto;
|
|
|
|
|
bottom: 20px;
|
|
|
|
|
right: auto;
|
|
|
|
|
left: 0px;
|
|
|
|
|
|
|
|
|
|
&:before {
|
2021-10-13 21:10:59 +13:00
|
|
|
top: auto;
|
|
|
|
|
right: auto;
|
2021-10-19 21:39:01 +13:00
|
|
|
bottom: -3px;
|
|
|
|
|
left: 9px;
|
2021-10-13 21:10:59 +13:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-15 08:27:03 +13:00
|
|
|
}
|
2018-10-02 16:58:15 +13:00
|
|
|
}
|
2018-05-30 21:39:38 +12:00
|
|
|
}
|
2018-06-01 20:44:30 +12:00
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
&__commands {
|
2021-10-16 22:31:15 +13:00
|
|
|
padding: 12px 12px 8px 12px;
|
|
|
|
|
border-radius: 3px 3px 0 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
background: colour('off_white');
|
|
|
|
|
|
2021-10-13 21:10:59 +13:00
|
|
|
@include clearfix();
|
2021-10-16 22:31:15 +13:00
|
|
|
@include theme('dark') {
|
|
|
|
|
background: colour('grey');
|
|
|
|
|
}
|
2021-10-13 21:10:59 +13:00
|
|
|
}
|
|
|
|
|
|
2018-06-01 20:44:30 +12:00
|
|
|
@include responsive($bp_medium){
|
2018-10-02 21:36:22 +13:00
|
|
|
position: absolute;
|
2019-08-17 21:57:06 +12:00
|
|
|
top: -8px;
|
2018-10-02 21:36:22 +13:00
|
|
|
right: 0px;
|
|
|
|
|
bottom: auto;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
|
|
|
|
& > .control {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-16 22:31:15 +13:00
|
|
|
&__inner {
|
2018-10-02 21:36:22 +13:00
|
|
|
top: auto;
|
2018-06-01 20:44:30 +12:00
|
|
|
right: 0;
|
2018-10-02 21:36:22 +13:00
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: auto;
|
2018-10-13 14:28:46 +13:00
|
|
|
padding: 0;
|
2018-10-02 21:36:22 +13:00
|
|
|
border-radius: 0;
|
2021-10-27 20:11:21 +13:00
|
|
|
max-height: calc(100vh - 140px);
|
|
|
|
|
overflow-y: auto;
|
2019-12-03 16:53:41 +13:00
|
|
|
|
2021-01-07 14:38:00 +11:00
|
|
|
@include theme('dark') {
|
2019-12-11 07:07:27 +13:00
|
|
|
box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.6);
|
|
|
|
|
}
|
2020-05-05 16:50:07 +12:00
|
|
|
|
|
|
|
|
@include theme('light') {
|
2019-12-11 07:07:27 +13:00
|
|
|
box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-01 20:44:30 +12:00
|
|
|
&:after {
|
2018-10-02 21:36:22 +13:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--no-results {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-16 22:31:15 +13:00
|
|
|
&__output {
|
2018-10-02 21:36:22 +13:00
|
|
|
@include clearfix();
|
2021-10-16 22:31:15 +13:00
|
|
|
padding: 0;
|
2018-10-02 21:36:22 +13:00
|
|
|
|
|
|
|
|
&:not(:first-child){
|
2019-08-13 21:34:30 +12:00
|
|
|
border-color: rgba(128,128,128,0.05);
|
2018-10-02 21:36:22 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
width: 30%;
|
|
|
|
|
float: left;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__controls {
|
|
|
|
|
width: 70%;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
2018-06-01 20:44:30 +12:00
|
|
|
}
|
|
|
|
|
}
|
2018-05-30 21:39:38 +12:00
|
|
|
}
|
|
|
|
|
|