Skip to content

Commit

Permalink
Merge pull request #6653 from nextcloud/fix-cursor-on-user-settings-t…
Browse files Browse the repository at this point in the history
…able

Fix cursor on user settings table
  • Loading branch information
MorrisJobke authored Sep 27, 2017
2 parents a90b046 + de31381 commit 72889e5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions settings/css/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -537,14 +537,17 @@ td {
visibility: hidden;
}
}
&.displayName > img, &.quota > img {
&.displayName > img {
visibility: hidden;
}
&.password, &.quota, &.displayName {
&.password, &.displayName {
width: 12em;
cursor: pointer;
}
&.password > span, &.quota > span {
&.mailAddress {
cursor: pointer;
}
&.password > span {
margin-right: 1.2em;
color: #C7C7C7;
}
Expand Down Expand Up @@ -633,11 +636,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 {
visibility: visible;
cursor: pointer;
}
Expand Down

0 comments on commit 72889e5

Please sign in to comment.