diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2017-09-28 17:48:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-28 17:48:40 +0200 |
commit | d58c0e68343185fe37293fa3901ced348e23bb9b (patch) | |
tree | bdc7805bd944f97429a2973f940337b32c9f8a05 /settings/css | |
parent | b17ca81df07166fed99afd224cf301b7746df5bb (diff) | |
parent | b9a8ba7a2361d6a1d1bbf6acf20abac58ac2ed91 (diff) | |
download | nextcloud-server-d58c0e68343185fe37293fa3901ced348e23bb9b.tar.gz nextcloud-server-d58c0e68343185fe37293fa3901ced348e23bb9b.zip |
Merge pull request #6669 from nextcloud/various-css-fixes
Various css fixes
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 86 |
1 files changed, 31 insertions, 55 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 8a722896fa5..221dad33ac3 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -579,42 +579,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 */ @@ -649,10 +613,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 { @@ -683,18 +661,30 @@ input#recoveryPassword { #userlist td.quota { position: relative; width: 10em; + progress.quota-user-progress { + position: absolute; + width: calc(10em + 0px); + margin-top: -7px; + z-index: 0; + margin-left: 1px; + height: 3px; + } } select { &.quota-user { - position: absolute; - left: 0; - top: 0; width: 10em; height: 34px; + z-index: 50; + position: relative; } - &.quota.active { - background: #fff; + + progress.quota-user-progress { + position: absolute; + width: calc(10em + 0px); + margin-top: -7px; + z-index: 0; + margin-left: 1px; + height: 3px; } } @@ -702,20 +692,6 @@ input.userFilter { width: 200px; } -.quota_progress_container { - position: absolute; - left: 0; - top: 0; - width: 10em; - margin: 3px 3px 3px 0; - border-radius: 3px; -} - -.quota_progress { - background-color: #eee; - height: 34px; -} - #newusergroups + input[type='submit'] { position: relative; top: -1px; |