summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-09 09:04:13 +0300
committerAndrew Dolgov <[email protected]>2021-03-09 09:04:13 +0300
commit4fe2e6bbf16e9b6fb08007c2b50e0aa9333a899c (patch)
tree2b00cb319242e7e7f6c859b4af718598319cd14c /classes
parentb1961163b8917bfefeaac2a0e83f490a5bb5e296 (diff)
app password list: fix th/td alignment
Diffstat (limited to 'classes')
-rw-r--r--classes/pref/prefs.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index 16c41df9d..34e8dc85b 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -1434,10 +1434,10 @@ class Pref_Prefs extends Handler_Protected {
<div class='panel panel-scrollable'>
<table width='100%' id='app-password-list'>
<tr>
- <th width='2%'> </th>
- <th align='left'><?= __("Description") ?></th>
- <th align='right'><?= __("Created") ?></th>
- <th align='right'><?= __("Last used") ?></th>
+ <th class="checkbox"> </th>
+ <th width='50%'><?= __("Description") ?></th>
+ <th><?= __("Created") ?></th>
+ <th><?= __("Last used") ?></th>
</tr>
<?php
@@ -1448,16 +1448,16 @@ class Pref_Prefs extends Handler_Protected {
foreach ($passwords as $pass) { ?>
<tr data-row-id='<?= $pass['id'] ?>'>
- <td align='center'>
+ <td class="checkbox">
<input onclick='Tables.onRowChecked(this)' dojoType='dijit.form.CheckBox' type='checkbox'>
</td>
<td>
<?= htmlspecialchars($pass["title"]) ?>
</td>
- <td align='right' class='text-muted'>
+ <td class='text-muted'>
<?= TimeHelper::make_local_datetime($pass['created'], false) ?>
</td>
- <td align='right' class='text-muted'>
+ <td class='text-muted'>
<?= TimeHelper::make_local_datetime($pass['last_used'], false) ?>
</td>
</tr>