Commit 5b286447 authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

fix spacing in diag_logs_template.inc https://github.com/opnsense/core/issues/1003

(cherry picked from commit 365afd1b)
(cherry picked from commit 76d9190b)
parent acd2944c
...@@ -231,6 +231,10 @@ body{ ...@@ -231,6 +231,10 @@ body{
} }
} }
.page-content-main [class^="col-"] + [class^="col-"]{
padding-top: ($grid-gutter-width/2);
}
.brand-logo{ .brand-logo{
display: none; display: none;
......
...@@ -5558,6 +5558,9 @@ body { ...@@ -5558,6 +5558,9 @@ body {
.tab-content .tab-content:last-child { .tab-content .tab-content:last-child {
margin-bottom: 0; } margin-bottom: 0; }
.page-content-main [class^="col-"] + [class^="col-"] {
padding-top: 20px; }
.brand-logo { .brand-logo {
display: none; } display: none; }
@media (min-width: 768px) { @media (min-width: 768px) {
......
...@@ -64,7 +64,6 @@ if (isset($_POST['filtertext'])) { ...@@ -64,7 +64,6 @@ if (isset($_POST['filtertext'])) {
} }
include("head.inc"); include("head.inc");
?> ?>
<body> <body>
...@@ -83,11 +82,14 @@ include("head.inc"); ...@@ -83,11 +82,14 @@ include("head.inc");
</p> </p>
<div class="tab-content content-box col-xs-12"> <div class="tab-content content-box col-xs-12">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-sort"> <table class="table table-striped">
<thead>
<tr> <tr>
<td class="col-md-2 col-sm-3 col-xs-4"><?= gettext('Date') ?></td> <th class="col-md-2 col-sm-3 col-xs-4"><?= gettext('Date') ?></th>
<td class="col-md-10 col-sm-9 col-xs-8"><?= gettext('Message') ?></td> <th class="col-md-10 col-sm-9 col-xs-8"><?= gettext('Message') ?></th>
</tr> </tr>
</thead>
<tbody>
<?php if (isset($logpills)): ?> <?php if (isset($logpills)): ?>
<tr> <tr>
<td colspan="2"> <td colspan="2">
...@@ -111,11 +113,12 @@ include("head.inc"); ...@@ -111,11 +113,12 @@ include("head.inc");
<form method="post"> <form method="post">
<?php if (isset($mode)): ?> <?php if (isset($mode)): ?>
<input type="hidden" name="mode" id="mode" value="<?= html_safe($mode) ?>"/> <input type="hidden" name="mode" id="mode" value="<?= html_safe($mode) ?>"/>
<?php endif ?> <?php endif; ?>
<input name="clear" type="submit" class="btn btn-primary" value="<?= html_safe(gettext('Clear log')) ?>"/> <input name="clear" type="submit" class="btn btn-primary" value="<?= html_safe(gettext('Clear log')) ?>"/>
</form> </form>
</td> </td>
</tr> </tr>
</tbody>
</table> </table>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment