diff options
author | psyborg55 <psyborg55@users.noreply.github.com> | 2017-09-13 19:49:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-13 19:49:40 +0200 |
commit | 549949ad8b0449cd7e2cf9a80628c8059a326c3a (patch) | |
tree | b482e15ffe99dd37c64f65eede46232d104e5701 | |
parent | bac20bc6482bf98a94df0d9494e558062bf04282 (diff) |
add fontsize style parameter
add fontsize style parameter to reduce output text size
Signed-off-by: Tomislav Požega <pozega.tomislav@gmail.com>
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_status/dmesg.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_status/dmesg.htm b/modules/luci-mod-admin-full/luasrc/view/admin_status/dmesg.htm index c119b57296..1a8770ef88 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_status/dmesg.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_status/dmesg.htm @@ -7,6 +7,6 @@ <%+header%> <h2 name="content"><%:Kernel Log%></h2> <div id="content_syslog"> -<textarea readonly="readonly" wrap="off" rows="<%=dmesg:cmatch("\n")+2%>" id="syslog"><%=dmesg:pcdata()%></textarea> +<textarea style="font-size: 12px;" readonly="readonly" wrap="off" rows="<%=dmesg:cmatch("\n")+2%>" id="syslog"><%=dmesg:pcdata()%></textarea> </div> <%+footer%> |