luci-base: nowrap for password input and reveal button
authorYousong Zhou <yszhou4tech@gmail.com>
Fri, 28 Jun 2019 15:53:05 +0000 (15:53 +0000)
committerYousong Zhou <yszhou4tech@gmail.com>
Sat, 6 Jul 2019 14:58:51 +0000 (14:58 +0000)
Fixes openwrt/luci#2624

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
(cherry-picked from commit 609f5290c8d582def0a6334519f5e31aad19abde)

modules/luci-base/luasrc/view/cbi/cell_valueheader.htm
modules/luci-base/luasrc/view/cbi/full_valueheader.htm

index cb11d8f61a1a884ffe532381dd34780509cd6398..4b70957543b4f5b4caf68027543bd44f0cde164a 100644 (file)
@@ -3,7 +3,7 @@
        local descr = luci.util.trim(striptags(self.description))
        local ftype = self.typename or (self.template and self.template:gsub("^.+/", ""))
 -%>
-<div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %>"<%=
+<div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %><% if self.password then %> nowrap<% end %>"<%=
        attr("data-name", self.option) ..
        ifattr(ftype and #ftype > 0, "data-type", ftype) ..
        ifattr(title and #title > 0, "data-title", title, true) ..
index 10a554329fa48bef1dc6d2d54bf66d350d0c96e4..1d9ebeba94a2d7b3328a59c87fb90deaedbf5899 100644 (file)
@@ -1,4 +1,4 @@
-<div class="cbi-value<% if self.error and self.error[section] then %> cbi-value-error<% end %><% if self.last_child then %> cbi-value-last<% end %>" id="cbi-<%=self.config.."-"..section.."-"..self.option%>" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>">
+<div class="cbi-value<% if self.error and self.error[section] then %> cbi-value-error<% end %><% if self.last_child then %> cbi-value-last<% end %><% if self.password then %> nowrap<% end %>" id="cbi-<%=self.config.."-"..section.."-"..self.option%>" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>">
        <%- if self.title and #self.title > 0 then -%>
        <label class="cbi-value-title"<%= attr("for", cbid) %>>
        <%- if self.titleref then -%><a title="<%=self.titledesc or translate('Go to relevant configuration page')%>" class="cbi-title-ref" href="<%=self.titleref%>"><%- end -%>