diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-10-20 10:22:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 10:22:52 +0200 |
commit | 4609c1360fd3bd8afeec1c3cf17989eba025606d (patch) | |
tree | 07b6012f0720f865dd83acc0f33eea7f7758afda /modules/luci-mod-admin-full | |
parent | e613bb9ddc16aae38141ad06d78561974b9298c5 (diff) | |
parent | 549949ad8b0449cd7e2cf9a80628c8059a326c3a (diff) |
Merge pull request #1365 from psyborg55/master
luci-mod-admin-full: add fontsize style parameter
Diffstat (limited to 'modules/luci-mod-admin-full')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_status/dmesg.htm | 2 | ||||
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_status/syslog.htm | 2 |
2 files changed, 2 insertions, 2 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 c119b5729..1a8770ef8 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%> diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_status/syslog.htm b/modules/luci-mod-admin-full/luasrc/view/admin_status/syslog.htm index b87f21d08..fb734a76d 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_status/syslog.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_status/syslog.htm @@ -7,6 +7,6 @@ <%+header%> <h2 name="content"><%:System Log%></h2> <div id="content_syslog"> -<textarea readonly="readonly" wrap="off" rows="<%=syslog:cmatch("\n")+2%>" id="syslog"><%=syslog:pcdata()%></textarea> +<textarea style="font-size: 12px;" readonly="readonly" wrap="off" rows="<%=syslog:cmatch("\n")+2%>" id="syslog"><%=syslog:pcdata()%></textarea> </div> <%+footer%> |