move eq to the player settings tab

This commit is contained in:
ed 2021-06-15 22:26:39 +02:00
parent 8b081e9e69
commit 6f6cc8f3f8
3 changed files with 6 additions and 6 deletions

View file

@ -723,18 +723,18 @@ input.eq_gain {
color: #300; color: #300;
background: #fea; background: #fea;
} }
#op_cfg { .opwide {
max-width: none; max-width: none;
margin-right: 1.5em; margin-right: 1.5em;
} }
#op_cfg>div>a { .opwide>div>a {
line-height: 2em; line-height: 2em;
} }
#op_cfg>div>span { #op_cfg>div>span {
display: inline-block; display: inline-block;
padding: .2em .4em; padding: .2em .4em;
} }
#op_cfg h3 { .opbox h3 {
margin: .8em 0 0 .6em; margin: .8em 0 0 .6em;
padding: 0; padding: 0;
border-bottom: 1px solid #555; border-bottom: 1px solid #555;

View file

@ -40,11 +40,11 @@
<div id="srch_q"></div> <div id="srch_q"></div>
</div> </div>
<div id="op_player" class="opview opbox"></div> <div id="op_player" class="opview opbox opwide"></div>
{%- include 'upload.html' %} {%- include 'upload.html' %}
<div id="op_cfg" class="opview opbox"> <div id="op_cfg" class="opview opbox opwide">
<h3>switches</h3> <h3>switches</h3>
<div> <div>
<a id="tooltips" class="tgl btn" href="#">tooltips</a> <a id="tooltips" class="tgl btn" href="#">tooltips</a>
@ -56,7 +56,6 @@
<h3>folder download</h3><div id="arc_fmt"></div> <h3>folder download</h3><div id="arc_fmt"></div>
{%- endif %} {%- endif %}
<h3>key notation</h3><div id="key_notation"></div> <h3>key notation</h3><div id="key_notation"></div>
<h3>audio equalizer</h3><div id="audio_eq"></div>
<h3>hidden columns</h3><div id="hcols"></div> <h3>hidden columns</h3><div id="hcols"></div>
</div> </div>

View file

@ -54,6 +54,7 @@ function MPlayer() {
var r = this; var r = this;
ebi('op_player').innerHTML = ( ebi('op_player').innerHTML = (
'<h3>audio equalizer</h3><div id="audio_eq"></div>' +
'<h3>playback mode</h3><div id="pb_mode">' + '<h3>playback mode</h3><div id="pb_mode">' +
'<a href="#" class="tgl btn">loop-folder</a>' + '<a href="#" class="tgl btn">loop-folder</a>' +
'<a href="#" class="tgl btn">next-folder</a>' + '<a href="#" class="tgl btn">next-folder</a>' +