Skip to content

Commit a85c3f7

Browse files
author
Kristan Kenney
committed
Merge branch 'fix/ui-cleanup' into main
2 parents 1c91527 + 11bdc0d commit a85c3f7

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

web/css/src/themes/default.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,6 +1506,14 @@ div.l-content > div.l-separator:nth-of-type(4) {
15061506
padding-right: 6px;
15071507
}
15081508

1509+
.body-user .l-unit.animated.fadeIn {
1510+
line-height: 2rem;
1511+
}
1512+
1513+
.body-user .actions-panel {
1514+
line-height: 2rem;
1515+
}
1516+
15091517
.subtitle {
15101518
color: #cc3366;
15111519
font-size: 0.8rem;

web/css/themes/default.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/edit/user/log/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
error_reporting(NULL);
33
ob_start();
4-
$TAB = 'USER';
4+
$TAB = 'LOG';
55

66
// Main include
77
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");

web/templates/admin/edit_mail.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@
116116
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_ssl" <?php if ($v_ssl == 'yes') echo "checked=yes" ?> onclick="javascript:elementHideShow('ssltable');"><?php print _('SSL Support');?></label>
117117
</td>
118118
</tr>
119-
<tr>
120-
<td class="step-left">
121-
<table style="display:<?php if ($v_ssl == 'no' ) { echo 'none';} else {echo 'block';}?> ;" id="ssltable">
119+
<tr id="ssltable" style="display:<?php if ($v_ssl == 'no' ) { echo 'none';} else {echo 'block';}?> ;" class="step-left">
120+
<td>
121+
<table>
122122
<tr>
123123
<td class="input-label vst-text">
124124
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_letsencrypt" <?php if($v_letsencrypt == 'yes' || $v_letencrypt == 'on') echo "checked=yes" ?> onclick="App.Actions.MAIL.toggle_letsencrypt(this)"><?php print _('Lets Encrypt Support');?></label>
@@ -234,7 +234,7 @@
234234
</td>
235235
</tr>
236236
<tr>
237-
<td class="vst-text">
237+
<td class="vst-text input-label">
238238
<label>
239239
<input type="checkbox" size="20" class="vst-checkbox" name="v_smtp_relay" <?php if ($v_smtp_relay == 'true') echo "checked=yes"; ?> onclick="javascript:elementHideShow('smtp_relay_table');"><?php print _('SMTP Relay');?>
240240
</label>

web/templates/admin/edit_server.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
<?php if (!empty($_SESSION['PROXY_SYSTEM'])) { ?>
221221
<tr>
222222
<td class="vst-text">
223-
<?php print _('Proxy Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['PROXY_SYSTEM'] ?>/"><?=_('configure')?></a>
223+
<?php print _('Proxy Server') ?> <a href="/edit/server/<? echo $_SESSION['PROXY_SYSTEM'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
224224
</td>
225225
</tr>
226226
<tr>
@@ -232,7 +232,7 @@
232232
<?php } ?>
233233
<tr>
234234
<td class="vst-text">
235-
<?php print _('Web Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['WEB_SYSTEM'] ?>/"><?=_('configure')?></a>
235+
<?php print _('Web Server') ?> <a href="/edit/server/<? echo $_SESSION['WEB_SYSTEM'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
236236
</td>
237237
</tr>
238238
<tr>
@@ -244,7 +244,7 @@
244244
<?php if (!empty($_SESSION['WEB_BACKEND'])) { ?>
245245
<tr>
246246
<td class="vst-text">
247-
<?php print _('Backend Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['WEB_BACKEND'] ?>/"><?=_('configure')?></a>
247+
<?php print _('Backend Server') ?> <a href="/edit/server/<? echo $_SESSION['WEB_BACKEND'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
248248
</td>
249249
</tr>
250250
<tr>
@@ -319,7 +319,7 @@
319319
<table style="display:<?php if (empty($v_adv)) echo 'none';?> ;" id="dns">
320320
<tr>
321321
<td class="vst-text step-top">
322-
<?php print _('DNS Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['DNS_SYSTEM'] ?>/"><?=_('configure')?></a>
322+
<?php print _('DNS Server') ?> <a href="/edit/server/<? echo $_SESSION['DNS_SYSTEM'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
323323
</td>
324324
</tr>
325325
<tr>
@@ -377,7 +377,7 @@
377377
<table style="display:<?php if (empty($v_mail_adv)) echo 'none';?> ;" id="mail">
378378
<tr>
379379
<td class="vst-text step-top">
380-
<?php print _('Mail Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['MAIL_SYSTEM'] ?>/"><?=_('configure')?></a>
380+
<?php print _('Mail Server') ?> <a href="/edit/server/<? echo $_SESSION['MAIL_SYSTEM'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
381381
</td>
382382
</tr>
383383
<tr>
@@ -389,7 +389,7 @@
389389
<?php if (!empty($_SESSION['ANTIVIRUS_SYSTEM'])) { ?>
390390
<tr>
391391
<td class="vst-text">
392-
<?php print _('Antivirus') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['ANTIVIRUS_SYSTEM'] ?>/"><?=_('configure')?></a>
392+
<?php print _('Antivirus') ?> <a href="/edit/server/<? echo $_SESSION['ANTIVIRUS_SYSTEM'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
393393
</td>
394394
</tr>
395395
<tr>
@@ -402,7 +402,7 @@
402402
<?php if (!empty($_SESSION['ANTISPAM_SYSTEM'])) { ?>
403403
<tr>
404404
<td class="vst-text">
405-
<?php print _('AntiSpam') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['ANTISPAM_SYSTEM'] ?>/"><?=_('configure')?></a>
405+
<?php print _('AntiSpam') ?> <a href="/edit/server/<? echo $_SESSION['ANTISPAM_SYSTEM'] ?>/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
406406
</td>
407407
</tr>
408408
<tr>
@@ -499,7 +499,7 @@
499499
<table style="display:<?php if (empty($v_db_adv)) echo 'none';?> ;" id="db">
500500
<tr>
501501
<td class="vst-text step-top">
502-
<?php print _('MySQL Support');?> / <a class="generate" href="/edit/server/mysql/"><?=_('configure')?></a>
502+
<?php print _('MySQL Support');?> <a href="/edit/server/mysql/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
503503
</td>
504504
</tr>
505505
<tr>
@@ -592,7 +592,7 @@
592592
<?php }} ?>
593593
<tr>
594594
<td class="vst-text input-label">
595-
<?php print _('PostgreSQL Support');?> / <a class="generate" href="/edit/server/postgresql/"><?=_('configure')?></a>
595+
<?php print _('PostgreSQL Support');?> <a href="/edit/server/postgresql/"><i class="fas fa-pencil-alt status-icon orange icon-pad-right"></i></a>
596596
</td>
597597
</tr>
598598
<tr>

0 commit comments

Comments
 (0)