diff options
author | Dirk Brenken <dev@brenken.org> | 2018-06-30 23:08:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-30 23:08:16 +0200 |
commit | 1fd3a1663528cc5029ee9d864128964f020a520d (patch) | |
tree | 01ec3a060c31da180bf0e17465c62232a7461a17 /applications/luci-app-lxc/luasrc/view | |
parent | 1a36f0307e5fd74f7ad1ca65e2b3fc0000494a89 (diff) | |
parent | b198de11bc1501f1a75dff9f5fb01f927f902186 (diff) |
Merge pull request #1920 from dibdot/lxc_fix
luci-app-lxc: small fixes & cosmetics
Diffstat (limited to 'applications/luci-app-lxc/luasrc/view')
-rw-r--r-- | applications/luci-app-lxc/luasrc/view/lxc.htm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/applications/luci-app-lxc/luasrc/view/lxc.htm b/applications/luci-app-lxc/luasrc/view/lxc.htm index b45e27f51f..47cc1a5f3f 100644 --- a/applications/luci-app-lxc/luasrc/view/lxc.htm +++ b/applications/luci-app-lxc/luasrc/view/lxc.htm @@ -19,8 +19,8 @@ local nx = require "nixio" local target = nx.uname().machine -%> -<fieldset class="cbi-section"> - <legend><%:Available Containers%></legend> +<div class="cbi-section"> + <h3><%:Available Containers%></h3> <div class="cbi-section-node"> <div class="table cbi-section-table" id="t_lxc_list"> <div class="tr cbi-section-table-titles"> @@ -30,15 +30,15 @@ local target = nx.uname().machine </div> </div> </div> -</fieldset> +</div> -<fieldset class="cbi-section"> +<div class="cbi-section"> <span id="lxc-list-output"></span> -</fieldset> +</div> <hr /> -<fieldset class="cbi-section"> - <legend><%:Create New Container%></legend> +<div class="cbi-section"> + <h3><%:Create New Container%></h3> <div class="cbi-section-node"> <div class="table cbi-section-table" id="t_lxc_create"> <div class="tr cbi-section-table-titles"> @@ -56,11 +56,11 @@ local target = nx.uname().machine </div> </div> </div> -</fieldset> +</div> -<fieldset class="cbi-section"> +<div class="cbi-section"> <span id="lxc-add-output"></span> -</fieldset> +</div> <hr /> |