diff options
author | NOYB <Al_Stu@Frontier.com> | 2015-12-21 15:05:26 -0800 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-01-06 13:38:27 -0800 |
commit | 4f2dc6c20c0176ede649a240fb00902625c4a977 (patch) | |
tree | d6a59077340164302f681409ccc38170c4442a0e /src/usr/local/www | |
parent | 8173741de3d4bb85403090b957872582e613a49b (diff) | |
download | pfsense-4f2dc6c20c0176ede649a240fb00902625c4a977.zip pfsense-4f2dc6c20c0176ede649a240fb00902625c4a977.tar.gz |
Per Colin (PR #2300)
Use Bootstraps text alignment classes
As per "http://getbootstrap.com/css/#type-alignment", use CLASS
statement instead in inline STYLE statement (much tidier)
Diffstat (limited to 'src/usr/local/www')
-rw-r--r-- | src/usr/local/www/status_logs_vpn.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/status_logs_vpn.php b/src/usr/local/www/status_logs_vpn.php index 0f32b22..e5e0e91 100644 --- a/src/usr/local/www/status_logs_vpn.php +++ b/src/usr/local/www/status_logs_vpn.php @@ -497,7 +497,7 @@ if (!$rawfilter) { if ($logfile == "vpn") { ?> <thead> - <tr style="white-space:nowrap;"> + <tr class="text-nowrap"> <th><?=gettext("Time")?></th> <th><?=gettext("Action")?></th> <th><?=gettext("User")?></th> @@ -509,7 +509,7 @@ if (!$rawfilter) { if ($logfile != "vpn") { # Needs to be tested with a vpn.log file before enabling. foreach ($filterlog as $filterent) { ?> - <tr style="white-space:nowrap;"> + <tr class="text-nowrap"> <td> <?=htmlspecialchars($filterent['time'])?> </td> @@ -539,7 +539,7 @@ if (!$rawfilter) { } else { ?> <thead> - <tr style="white-space:nowrap;"> + <tr class="text-nowrap"> <th><?=gettext("Time")?></th> <th><?=gettext("Type")?></th> <th><?=gettext("PID")?></th> @@ -550,7 +550,7 @@ if (!$rawfilter) { <?php foreach ($filterlog as $filterent) { ?> - <tr style="white-space:nowrap;"> + <tr class="text-nowrap"> <td> <?=htmlspecialchars($filterent['time'])?> </td> |