From 4e75e3710c6bf5595e9852dd99cadf3332cf484b Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Tue, 6 Aug 2019 11:42:04 +0200 Subject: luci-app-travelmate: sync with 1.4.10 * wifi add/edit: add a select box to reference an external script for automated captive portal logins * fix a visual issue with material theme Signed-off-by: Dirk Brenken --- .../luci-app-travelmate/luasrc/view/travelmate/stations.htm | 12 ++++++------ .../luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'applications/luci-app-travelmate/luasrc/view') diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm index 0e78803d06..5c28966339 100644 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm +++ b/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm @@ -34,7 +34,7 @@ This is free software, licensed under the Apache License, Version 2.0 if (view) { view.setAttribute("name", "station_nok"); - view.setAttribute("style", "color: #a22; font-weight: bold"); + view.setAttribute("style", "text-align: left !important; color: #a22; font-weight: bold"); } } } @@ -59,7 +59,7 @@ This is free software, licensed under the Apache License, Version 2.0 view = document.getElementById(search); if (view) { - view.setAttribute("style", "color: #37c; font-weight: bold"); + view.setAttribute("style", "text-align: left !important; color: #37c; font-weight: bold"); } } } @@ -122,10 +122,10 @@ This is free software, licensed under the Apache License, Version 2.0 local encr = s.encryption or "-" -%>
-
<%=device%>
-
<%=ssid%>
-
<%=bssid%>
-
<%=encr%>
+
<%=device%>
+
<%=ssid%>
+
<%=bssid%>
+
<%=encr%>
diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm index 67568f179e..86846a5710 100644 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm +++ b/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm @@ -52,16 +52,16 @@ This is free software, licensed under the Apache License, Version 2.0
<%- for i, net in ipairs(iw.scanlist or { }) do -%>
-
+
<%=net.ssid and utl.pcdata(net.ssid) or "%s" % translate("hidden")%>
-
+
<%=net.bssid and utl.pcdata(net.bssid)%>
-
+
<%=format_wifi_encryption(net.encryption)%>
-
+
<%=percent_wifi_signal(net)%> %
-- cgit v1.2.3