mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
Fix floated group rows when more than one row exists. Attach g- before all css ids and classes for consistency. Other minor layout adjustments.
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
<? if (!$group->special): ?>
|
||||
<a href="<?= url::site("admin/users/delete_group_form/$group->id") ?>"
|
||||
title="<?= t("Delete the %name group", array("name" => $group->name))->for_html_attr() ?>"
|
||||
class="g-dialog-link g-button ui-state-default ui-corner-all">
|
||||
class="g-dialog-link g-button g-right ui-state-default ui-corner-all">
|
||||
<span class="ui-icon ui-icon-trash"><?= t("Delete") ?></span></a>
|
||||
<? else: ?>
|
||||
<a title="<?= t("This default group cannot be deleted")->for_html_attr() ?>"
|
||||
class="g-dialog-link g-button ui-state-disabled ui-corner-all ui-icon-left">
|
||||
class="g-dialog-link g-button g-right ui-state-disabled ui-corner-all ui-icon-left">
|
||||
<span class="ui-icon ui-icon-trash"><?= t("Delete") ?></span></a>
|
||||
<? endif ?>
|
||||
</h4>
|
||||
@@ -20,7 +20,7 @@
|
||||
<?= html::clean($user->name) ?>
|
||||
<? if (!$group->special): ?>
|
||||
<a href="javascript:remove_user(<?= $user->id ?>, <?= $group->id ?>)"
|
||||
class="g-button ui-state-default ui-corner-all ui-icon-left"
|
||||
class="g-button g-right ui-state-default ui-corner-all ui-icon-left"
|
||||
title="<?= t("Remove %user from %group group",
|
||||
array("user" => $user->name, "group" => $group->name))->for_html_attr() ?>">
|
||||
<span class="ui-icon ui-icon-closethick"><?= t("Remove") ?></span>
|
||||
|
||||
Reference in New Issue
Block a user