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>
pull/6653/head
Daniel Calviño Sánchez 2017-09-26 17:35:52 +07:00
parent 8363aceb74
commit 401322bf61
1 changed files with 1 additions and 1 deletions

@ -543,7 +543,7 @@ td {
&.displayName > img, &.quota > img {
visibility: hidden;
}
&.password, &.quota, &.displayName {
&.password, &.displayName {
width: 12em;
cursor: pointer;
}