diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-07-20 16:15:25 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2020-07-20 16:23:46 +0200 |
commit | 133a1ae3f4293dce5063bab43e3aecfdd92d889e (patch) | |
tree | b1c26a25d6c4a59b877212e6b52df11abb6dacbb /modules/luci-compat/luasrc/view/cbi/button.htm | |
parent | 7edd635026594da577b73f059c0d8b95d653f8fc (diff) |
luci-compat: add btn class to all button inputs
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'modules/luci-compat/luasrc/view/cbi/button.htm')
-rw-r--r-- | modules/luci-compat/luasrc/view/cbi/button.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-compat/luasrc/view/cbi/button.htm b/modules/luci-compat/luasrc/view/cbi/button.htm index 6ccba58f23..1f9d164240 100644 --- a/modules/luci-compat/luasrc/view/cbi/button.htm +++ b/modules/luci-compat/luasrc/view/cbi/button.htm @@ -1,6 +1,6 @@ <%+cbi/valueheader%> <% if self:cfgvalue(section) ~= false then %> - <input class="cbi-button cbi-button-<%=self.inputstyle or "button" %>" type="submit"<%= attr("name", cbid) .. attr("id", cbid) .. attr("value", self.inputtitle or self.title)%> /> + <input class="btn cbi-button cbi-button-<%=self.inputstyle or "button" %>" type="submit"<%= attr("name", cbid) .. attr("id", cbid) .. attr("value", self.inputtitle or self.title)%> /> <% else %> - <% end %> |