forked from tv2/sisyfos-audio-controller
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: multiple mixers - channel faders assign menu - label for each m…
…ixer
- Loading branch information
olzzon
authored and
olzzon
committed
Oct 9, 2020
1 parent
2086754
commit f49a953
Showing
2 changed files
with
116 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,81 @@ | ||
.channel-route-body { | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 400px; | ||
overflow: auto; | ||
max-height: 90vh; | ||
background-color: rgb(31, 31, 31); | ||
border-color: rgb(124, 124, 124); | ||
border-style: solid; | ||
border-width: 4px; | ||
text-align: left; | ||
z-index: 2; | ||
|
||
color: #fff; | ||
} | ||
|
||
.channel-route-body > h2 { | ||
border-bottom: 1px solid #999; | ||
margin: 0; | ||
padding: 10px 0; | ||
line-height: 50px; | ||
text-align: center; | ||
|
||
} | ||
|
||
|
||
.channel-route-text { | ||
color: dimgray; | ||
margin: 0; | ||
margin-left: 40px; | ||
padding: 0px 0; | ||
line-height: 20px; | ||
text-align: left; | ||
font-size: 110%; | ||
} | ||
|
||
.channel-route-text.checked { | ||
font-weight: bold; | ||
color: white; | ||
} | ||
|
||
.channel-route-body > .close { | ||
position: absolute; | ||
outline : none; | ||
border-color: rgb(99, 99, 99); | ||
background-color: rgb(27, 27, 27); | ||
border-radius: 100%; | ||
display: block; | ||
color: #fff; | ||
width: 50px; | ||
height: 50px; | ||
font-size: 30px; | ||
line-height: 50px; | ||
top: -5px; | ||
right: 9px; | ||
} | ||
|
||
.channel-route-body > button { | ||
line-height: 10px; | ||
outline : none; | ||
border-color: rgb(99, 99, 99); | ||
background-color: rgb(27, 27, 27); | ||
margin-right: 10px; | ||
margin-top: 15px; | ||
margin-bottom: 15px; | ||
margin-left: 10px; | ||
border-radius: 7px; | ||
color: #fff; | ||
width: 34%; | ||
font-size: 10px; | ||
line-height: 50px; | ||
} | ||
.channel-route-body { | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 400px; | ||
overflow: auto; | ||
max-height: 90vh; | ||
background-color: rgb(31, 31, 31); | ||
border-color: rgb(124, 124, 124); | ||
border-style: solid; | ||
border-width: 4px; | ||
text-align: left; | ||
z-index: 2; | ||
|
||
color: #fff; | ||
} | ||
|
||
.channel-route-body > h2 { | ||
border-bottom: 1px solid #999; | ||
margin: 0; | ||
padding: 10px 0; | ||
line-height: 50px; | ||
text-align: center; | ||
} | ||
|
||
.channel-route-mixer-name { | ||
font-size: 150%; | ||
border-bottom: 1px solid #999; | ||
margin: 0; | ||
padding: 10px 0; | ||
line-height: 50px; | ||
text-align: center; | ||
} | ||
|
||
.channel-route-text { | ||
color: dimgray; | ||
margin: 0; | ||
margin-left: 40px; | ||
padding: 0px 0; | ||
line-height: 20px; | ||
text-align: left; | ||
font-size: 110%; | ||
} | ||
|
||
.channel-route-text.checked { | ||
font-weight: bold; | ||
color: white; | ||
} | ||
|
||
.channel-route-body > .close { | ||
position: absolute; | ||
outline: none; | ||
border-color: rgb(99, 99, 99); | ||
background-color: rgb(27, 27, 27); | ||
border-radius: 100%; | ||
display: block; | ||
color: #fff; | ||
width: 50px; | ||
height: 50px; | ||
font-size: 30px; | ||
line-height: 50px; | ||
top: -5px; | ||
right: 9px; | ||
} | ||
|
||
.channel-route-body > button { | ||
line-height: 10px; | ||
outline: none; | ||
border-color: rgb(99, 99, 99); | ||
background-color: rgb(27, 27, 27); | ||
margin-right: 10px; | ||
margin-top: 15px; | ||
margin-bottom: 15px; | ||
margin-left: 10px; | ||
border-radius: 7px; | ||
color: #fff; | ||
width: 34%; | ||
font-size: 10px; | ||
line-height: 50px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters