diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-09-26 17:35:52 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-09-26 17:43:25 +0200 |
commit | 401322bf6157ed4f6e2d5a23b11fa3f71b484289 (patch) | |
tree | d18c7d7851516140b397033fab63e772596f2941 /settings/css/settings.scss | |
parent | 8363aceb74c3ecd38a9797019fb6361e7b616c35 (diff) | |
download | nextcloud-server-401322bf6157ed4f6e2d5a23b11fa3f71b484289.tar.gz nextcloud-server-401322bf6157ed4f6e2d5a23b11fa3f71b484289.zip |
Remove "cursor: pointer" from quota cell
The quota is set through a dropdown, and this dropdown is only shown
when clicking on the select element itself. Therefore, the cell should
not show a pointer when hovering on it but outside the select element.
Note that although the removed "&.quota" selector also set a "width"
declaration that declaration was later overriden by
"#userlist td.quota", so it was not needed.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'settings/css/settings.scss')
-rw-r--r-- | settings/css/settings.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 7c8effd02d8..f1910549d35 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -543,7 +543,7 @@ td { &.displayName > img, &.quota > img { visibility: hidden; } - &.password, &.quota, &.displayName { + &.password, &.displayName { width: 12em; cursor: pointer; } |