diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-28 11:55:25 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-28 11:55:25 +0200 |
commit | 7fb329294958beab28a2cbd8370d5733de8ec4d0 (patch) | |
tree | b164a49cd8babf6212791e2e5a51838c5331f796 /settings/css | |
parent | c1795b0611875b309ad099e285fdfd54dad91804 (diff) | |
download | nextcloud-server-7fb329294958beab28a2cbd8370d5733de8ec4d0.tar.gz nextcloud-server-7fb329294958beab28a2cbd8370d5733de8ec4d0.zip |
Popover to css guidelines
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 52 |
1 files changed, 15 insertions, 37 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 1ba3c76bfed..9ef7052e95e 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -576,42 +576,6 @@ span.usersLastLoginTooltip { .groupsListContainer.hidden { display: none; } - .bubble { - z-index: 1; - right: -6px; - top: auto; - &:after { - right: 5px; - } - } - .popovermenu { - a.menuitem { - height: 20px; - margin: 0; - padding: 0; - line-height: initial; - } - margin-top: 4px; - border-top-right-radius: 3px; - right: 3px; - opacity: 0; - display: block; - visibility: hidden; - transition: opacity 0.1s, visibility 0.1s; - } - tr.active .popovermenu { - opacity: 1; - visibility: visible; - } - .popovermenu > ul.userActionsMenu { - right: 15px; - a { - margin: 5px 0; - span:last-child { - margin-left: 5px; - } - } - } } /* because of accessibility the name cell is <th> - therefore we enforce the black color */ @@ -646,10 +610,24 @@ tr:hover > td { td.userActions { width: 25px; text-align: center; + position: relative; .action { position: relative; top: 3px; } + .toggleUserActions { + border: none; + background-color: rgba(0, 0, 0, 0); + width: 34px; + height: 34px; + margin: 0; + opacity: 0.5; + &:hover, + &:focus { + background-color: transparent; + opacity: 1; + } + } } tr.active td.userActions .action { @@ -694,7 +672,7 @@ select { &.quota-user { width: 10em; height: 34px; - z-index: 150; + z-index: 50; position: relative; } + progress.quota-user-progress { |