From 401322bf6157ed4f6e2d5a23b11fa3f71b484289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Tue, 26 Sep 2017 17:35:52 +0200 Subject: [PATCH] Remove "cursor: pointer" from quota cell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- settings/css/settings.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }