diff options
author | mariusbaumann <baumann.marius@gmail.com> | 2015-01-03 07:12:50 +0100 |
---|---|---|
committer | mariusbaumann <baumann.marius@gmail.com> | 2015-01-03 07:12:50 +0100 |
commit | 69200db3473588f6df334836c6f249f489575888 (patch) | |
tree | b3b1abc032c4826cb4c463285641dde416291d6c /module/web/templates/default/settings_item.html | |
parent | Redesign with bootstrap css (diff) | |
download | pyload-69200db3473588f6df334836c6f249f489575888.tar.xz |
Completely new Design v1
Some bugs heve to be fexed next days
Diffstat (limited to 'module/web/templates/default/settings_item.html')
-rw-r--r-- | module/web/templates/default/settings_item.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/module/web/templates/default/settings_item.html b/module/web/templates/default/settings_item.html index 813383343..b760aaa02 100644 --- a/module/web/templates/default/settings_item.html +++ b/module/web/templates/default/settings_item.html @@ -1,4 +1,5 @@ -<table class="settable"> +<table class="settable table"> + {% if section.outline %} <tr><th colspan="2">{{ section.outline }}</th></tr> {% endif %} @@ -23,26 +24,27 @@ {% endfor %} </select> {% elif option.type == "folder" %} - <input name="{{skey}}|{{okey}}" type="text" + <input style="float: right; margin-bottom: 5px;" class="form-control" name="{{skey}}|{{okey}}" type="text" id="{{skey}}|{{okey}}" value="{{option.value}}"/> - <input name="browsebutton" type="button" + <input style="float: right;" class="form-control btn btn-primary" name="browsebutton" type="button" onclick="ifield = document.getElementById('{{skey}}|{{okey}}'); pathchooser = window.open('{% if option.value %}{{ "/pathchooser/" + option.value|quotepath }}{% else %}{{ pathroot }}{% endif %}', 'pathchooser', 'scrollbars=yes,toolbar=no,menubar=no,statusbar=no,width=650,height=300'); pathchooser.ifield = ifield; window.ifield = ifield;" value="{{_("Browse")}}"/> {% elif option.type == "file" %} - <input name="{{skey}}|{{okey}}" type="text" + <input style="float: right; margin-bottom: 5px;" class="form-control" name="{{skey}}|{{okey}}" type="text" id="{{skey}}|{{okey}}" value="{{option.value}}"/> - <input name="browsebutton" type="button" + <input style="float: right;" class="form-control btn btn-primary" name="browsebutton" type="button" onclick="ifield = document.getElementById('{{skey}}|{{okey}}'); filechooser = window.open('{% if option.value %}{{ "/filechooser/" + option.value|quotepath }}{% else %}{{ fileroot }}{% endif %}', 'filechooser', 'scrollbars=yes,toolbar=no,menubar=no,statusbar=no,width=650,height=300'); filechooser.ifield = ifield; window.ifield = ifield;" value="{{_("Browse")}}"/> {% elif option.type == "password" %} - <input id="{{skey}}|{{okey}}" name="{{skey}}|{{okey}}" + <input style="float: right;" class="form-control" id="{{skey}}|{{okey}}" name="{{skey}}|{{okey}}" type="password" value="{{option.value}}"/> {% else %} - <input id="{{skey}}|{{okey}}" name="{{skey}}|{{okey}}" + <input style="float: right;" class="form-control" id="{{skey}}|{{okey}}" name="{{skey}}|{{okey}}" type="text" value="{{option.value}}"/> {% endif %} </td> </tr> {% endif %} {% endfor %} + </table>
\ No newline at end of file |