diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-09-26 16:59:57 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-09-26 16:59:57 +0200 |
commit | 8363aceb74c3ecd38a9797019fb6361e7b616c35 (patch) | |
tree | 5639981ba6810d6a74002da3dd57ed1f2a581764 | |
parent | ef3e8faea22a3a7278dbf24f3988c80d80415090 (diff) | |
download | nextcloud-server-8363aceb74c3ecd38a9797019fb6361e7b616c35.tar.gz nextcloud-server-8363aceb74c3ecd38a9797019fb6361e7b616c35.zip |
Set "cursor: pointer" for email addresses
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 <danxuliu@gmail.com>
-rw-r--r-- | settings/css/settings.scss | 7 |
1 files changed, 5 insertions, 2 deletions
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; } |