Fixed actions and header missing th
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
0f229d23f7
commit
6b45d7e549
|
@ -40,15 +40,15 @@ td.mountPoint, td.backend { width:160px; }
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
width: 44px;
|
width: 44px;
|
||||||
opacity: 0.5;
|
|
||||||
&:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
[class^='icon-'],
|
[class^='icon-'],
|
||||||
[class*=' icon-'] {
|
[class*=' icon-'] {
|
||||||
|
opacity: 0.5;
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
vertical-align: text-bottom;
|
vertical-align: text-bottom;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
&:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -727,15 +727,15 @@ MountConfigListView.prototype = _.extend({
|
||||||
self.recheckStorageConfig($(this).closest('tr'));
|
self.recheckStorageConfig($(this).closest('tr'));
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$el.on('click', 'td.remove>img', function() {
|
this.$el.on('click', 'td.remove>.icon-delete', function() {
|
||||||
self.deleteStorageConfig($(this).closest('tr'));
|
self.deleteStorageConfig($(this).closest('tr'));
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$el.on('click', 'td.save>img', function () {
|
this.$el.on('click', 'td.save>.icon-checkmark', function () {
|
||||||
self.saveStorageConfig($(this).closest('tr'));
|
self.saveStorageConfig($(this).closest('tr'));
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$el.on('click', 'td.mountOptionsToggle>.icon-settings', function() {
|
this.$el.on('click', 'td.mountOptionsToggle>.icon-settings-dark', function() {
|
||||||
self._showMountOptionsDropdown($(this).closest('tr'));
|
self._showMountOptionsDropdown($(this).closest('tr'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -101,6 +101,7 @@
|
||||||
<?php if ($_['visibilityType'] === BackendService::VISIBILITY_ADMIN) print_unescaped('<th>'.$l->t('Available for').'</th>'); ?>
|
<?php if ($_['visibilityType'] === BackendService::VISIBILITY_ADMIN) print_unescaped('<th>'.$l->t('Available for').'</th>'); ?>
|
||||||
<th> </th>
|
<th> </th>
|
||||||
<th> </th>
|
<th> </th>
|
||||||
|
<th> </th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
Loading…
Reference in New Issue