Skip to content

Commit

Permalink
Add Ticker Speed
Browse files Browse the repository at this point in the history
  • Loading branch information
berryv97 committed Mar 10, 2024
1 parent c373f10 commit 9e6f0dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/public/assets/js/processPageSources.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ function processPageSources_updateGT_text(textItems){
`
<div class="color">
<h4>Color</h4>
<input class="input_color" placeholder="#xxxxxx" pattern="^#([A-Fa-f0-9]{6})$" onblur="ApiVmixSend('SetTextColour','${inputSelect}', this.value, '','${item.name}', '${index}')">
<input class="input_color" placeholder="#xxxxxx" type="color" pattern="^#([A-Fa-f0-9]{6})$" onblur="ApiVmixSend('SetTextColour','${inputSelect}', this.value, '','${item.name}', '${index}')">
<h4>Ticker Speed</h4>
<input class="input_color" placeholder="0-100" type="number" pattern="^([0-9]{3})$" onblur="ApiVmixSend('SetTickerSpeed','${inputSelect}', this.value, '','${item.name}', '${index}')">
</div>
<div class="countdown">
<h4>Countdown</h4>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,10 @@ label {

.input_color{
width: 150px;
margin-right: 7px;
}
}

.countdown{
justify-content: flex-end;
}
Expand Down
1 change: 1 addition & 0 deletions app/public/assets/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2181,6 +2181,7 @@ nav div .statut_vmix_contener .statut_vmix .activeContainer div.active {
.inputContainer .Container .body .content .GT .GeneralContainer #inputContainer_content_gt_value .gt_text .bottum .countdown .input_color,
.inputContainer .Container .body .content .GT .GeneralContainer #inputContainer_content_gt_value .gt_text .bottum .color .input_color {
width: 150px;
margin-right: 7px;
}
.inputContainer .Container .body .content .GT .GeneralContainer #inputContainer_content_gt_value .gt_text .bottum .countdown {
justify-content: flex-end;
Expand Down
2 changes: 1 addition & 1 deletion app/public/assets/style/index.css.map

Large diffs are not rendered by default.

0 comments on commit 9e6f0dc

Please sign in to comment.