diff options
author | 2015-04-08 21:49:45 +0200 | |
---|---|---|
committer | 2015-04-08 21:49:45 +0200 | |
commit | c19e6e249c839d127d2cd6ae70ec5be909b2184e (patch) | |
tree | 97de200f5430c80bb2f22ba6c92e450e50acf369 /pyload/webui/themes/Next/tml/settings.html | |
parent | fix setup (diff) | |
parent | Merge pull request #1 from vuolter/0.4.10 (diff) | |
download | pyload-c19e6e249c839d127d2cd6ae70ec5be909b2184e.tar.xz |
Merge remote-tracking branch 'origin/0.4.10' into 0.4.10
Diffstat (limited to 'pyload/webui/themes/Next/tml/settings.html')
-rw-r--r-- | pyload/webui/themes/Next/tml/settings.html | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/pyload/webui/themes/Next/tml/settings.html b/pyload/webui/themes/Next/tml/settings.html index 6d097f49d..805340057 100644 --- a/pyload/webui/themes/Next/tml/settings.html +++ b/pyload/webui/themes/Next/tml/settings.html @@ -28,17 +28,14 @@ <ul class="nav tabs" style="width: 20%; float:left;"> <li class> <div class="panel panel-default" > - <div class="panel-body" style="overlow-y: scroll; "> - - - <ul id="general-menu" style=" float: left;"> - {% for entry,name in conf.general %} - <nobr> - <li style="list-style-type: none;" id="general|{{ entry }}">{{ name }}</li> - </nobr> - <br> - {% endfor %} - </ul> + <div class="panel-body"> + <ul id="general-menu" style="float: left; height: 600px; overflow: auto; overflow-x: hidden; width: 100%"> + {% for entry,name in conf.general %} + <nobr> + <li style="list-style-type: none; cursor: pointer; margin-top: 10px;" id="general|{{ entry }}">{{ name }}</li> + </nobr> + {% endfor %} + </ul> </div> </div> </li> @@ -59,18 +56,16 @@ <span id="plugins" class="tabContent"> <ul class="nav tabs" style="width: 20%; float:left; hight:300px;"> <li class> - <div class="panel panel-default" style="overflow-y: scroll; "> - <div class="panel-body" > - - <ul id="plugin-menu" style=" float: left;"> - {% for entry,name in conf.plugin %} - <nobr> - <li style="list-style-type: none;" id="plugin|{{ entry }}">{{ name }}</li> - </nobr> - <br> - {% endfor %} - </ul> - <div> + <div class="panel panel-default"> + <div class="panel-body"> + <ul id="plugin-menu" style="float: left; height: 600px; overflow: auto; overflow-x: hidden; width: 100%"> + {% for entry,name in conf.plugin %} + <nobr> + <li style="list-style-type: none; cursor: pointer; margin-top: 10px;" id="plugin|{{ entry }}">{{ name }}</li> + </nobr> + {% endfor %} + </ul> + <div> </div> </li> </ul> |