From 8363aceb74c3ecd38a9797019fb6361e7b616c35 Mon Sep 17 00:00:00 2001 From: Daniel Calviño Sánchez Date: Tue, 26 Sep 2017 16:59:57 +0200 Subject: Set "cursor: pointer" for email addresses MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clicking anywhere on the cell shows the input field to set the email address, so the cursor is set as a pointer not only on the text and icon, but on the whole cell as well (like done for the full name and the password). Signed-off-by: Daniel Calviño Sánchez --- settings/css/settings.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'settings') diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 2ec7f575329..7c8effd02d8 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -547,6 +547,9 @@ td { width: 12em; cursor: pointer; } + &.mailAddress { + cursor: pointer; + } &.password > span, &.quota > span { margin-right: 1.2em; color: #C7C7C7; @@ -636,11 +639,11 @@ span.usersLastLoginTooltip { } tr:hover > td { - &.password > span, &.displayName > span { + &.password > span, &.displayName > span, &.mailAddress > span { margin: 0; cursor: pointer; } - &.password > img, &.displayName > img, &.quota > img { + &.password > img, &.displayName > img, &.mailAddress > img, &.quota > img { visibility: visible; cursor: pointer; } -- cgit v1.2.3