]> source.dussan.org Git - nextcloud-server.git/commitdiff
Enhancement: Makes Edit and Delete Icons Tapable, 44px by 44px dimensions.
authorraghunayyar <me@iraghu.com>
Fri, 21 Feb 2014 21:10:47 +0000 (02:40 +0530)
committerArthur Schiwon <blizzz@owncloud.com>
Mon, 2 Jun 2014 10:53:53 +0000 (12:53 +0200)
settings/css/settings.css
settings/templates/users/part.grouplist.php

index 067f80fc9a7560a651816810d11959220b4a60e3..0e62ab6763dabd3f73d3f84ff3a918257ec778f7 100644 (file)
@@ -52,17 +52,20 @@ table.nostyle td { padding: 0.2em 0; }
 
 /* USERS */
 .usercount { float: left; margin: 5px; }
+li.active span.utils .delete { left: 7px; }
 li.active span.utils .delete, li.active span.utils .rename {
        float: left; position: relative;
-       margin: 3px; top: 4px;
+       top: -7px; width: 44px; height: 44px;
 }
+li.active span.utils .rename {
+       width: 16px; height: 16px;
+       padding: 14px;
+       cursor: pointer;
+}
+li.active span.utils .delete img { margin: 14px; }
 span.utils .delete, span.utils .rename { display: none; }
 #app-navigation ul li.active > span.utils .delete,
 #app-navigation ul li.active > span.utils .rename { display: block; }
-li.active span.utils .delete {
-       float: left; position: relative;
-       margin: 3px; top: 4px;
-}
 #usersearchform { position: absolute; top: 4px; right: 10px; }
 #usersearchform label { font-weight: 700; }
 form { display:inline; }
index cf7338b50960f0072e4b4cad8c5a5ff0e4ff8361..ce038c90107ebda91440be0a99e40c08f075ef87 100644 (file)
@@ -28,7 +28,7 @@
                        <span class="utils">
                                <span class="usercount"><?php if(count($group['useringroup']) > 0) { p(count($group['useringroup'])); } ?></span>
                                <img class="svg action rename" src="<?php p(image_path('core', 'actions/rename.svg'))?>"
-                                       alt="<?php p($l->t("change group name"))?>" title="<?php p($l->t("change group name"))?>" />
+                                       original-title="<?php p($l->t('Edit'))?>" alt="<?php p($l->t("change group name"))?>" title="<?php p($l->t("change group name"))?>" />
                                <a href="#" class="action delete" original-title="<?php p($l->t('Delete'))?>">
                                        <img src="<?php print_unescaped(image_path('core', 'actions/delete.svg')) ?>" class="svg" />
                                </a>