mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-07 03:59:12 -04:00
Add slightly more visual feedback when you're hovering over a
draggable user. Also, drag the icon and name not just the icon.
This commit is contained in:
@@ -55,7 +55,6 @@
|
||||
<div class="gBlockContent">
|
||||
<table id="gUserAdminList">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><?= t("Username") ?></th>
|
||||
<th><?= t("Full name") ?></th>
|
||||
<th><?= t("Email") ?></th>
|
||||
@@ -65,14 +64,12 @@
|
||||
|
||||
<? foreach ($users as $i => $user): ?>
|
||||
<tr id="gUser-<?= $user->id ?>" class="<?= text::alternate("gOddRow", "gEvenRow") ?> user">
|
||||
<td id="user-<?= $user->id ?>" class="core-info">
|
||||
<td id="user-<?= $user->id ?>" class="core-info gDraggable">
|
||||
<img src="<?= $user->avatar_url(20, $theme->url("images/avatar.jpg", true)) ?>"
|
||||
title="<?= t("Drag user onto group below to add as a new member") ?>"
|
||||
alt="<?= $user->name ?>"
|
||||
width="20"
|
||||
height="20" />
|
||||
</td>
|
||||
<td>
|
||||
<?= $user->name ?>
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user