mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #35380 from nextcloud/enh/noid/fix-remaining-user-issues
fix remaining user settings issues
This commit is contained in:
commit
5f3585d817
3 changed files with 17 additions and 7 deletions
|
|
@ -1228,8 +1228,8 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
#body-settings #app-content.user-list-grid .row:not(.row--editable).name, #body-settings #app-content.user-list-grid .row:not(.row--editable).password, #body-settings #app-content.user-list-grid .row:not(.row--editable).displayName, #body-settings #app-content.user-list-grid .row:not(.row--editable).mailAddress, #body-settings #app-content.user-list-grid .row:not(.row--editable).userBackend, #body-settings #app-content.user-list-grid .row:not(.row--editable).languages {
|
||||
overflow: hidden;
|
||||
}
|
||||
#body-settings #app-content.user-list-grid .row .groups,
|
||||
#body-settings #app-content.user-list-grid .row .subadmins {
|
||||
#body-settings #app-content.user-list-grid .row:not(.row--editable) .groups,
|
||||
#body-settings #app-content.user-list-grid .row:not(.row--editable) .subadmins {
|
||||
overflow: auto;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
|
@ -1262,6 +1262,9 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
min-width: 88px;
|
||||
background-color: var(--color-main-background);
|
||||
}
|
||||
#body-settings #app-content.user-list-grid .row.row--editable .userActions {
|
||||
z-index: 10;
|
||||
}
|
||||
#body-settings #app-content.user-list-grid .row .subtitle {
|
||||
color: var(--color-text-maxcontrast);
|
||||
vertical-align: baseline;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1384,6 +1384,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(.row--editable) {
|
||||
&.name,
|
||||
&.password,
|
||||
|
|
@ -1396,10 +1397,12 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
}
|
||||
|
||||
// Scroll if too much groups
|
||||
.groups,
|
||||
.subadmins {
|
||||
overflow: auto;
|
||||
max-height: 100%;
|
||||
&:not(.row--editable) {
|
||||
.groups,
|
||||
.subadmins {
|
||||
overflow: auto;
|
||||
max-height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.groups,
|
||||
|
|
@ -1432,6 +1435,10 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
background-color: var(--color-main-background);
|
||||
}
|
||||
|
||||
&.row--editable .userActions {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: var(--color-text-maxcontrast);
|
||||
vertical-align: baseline;
|
||||
|
|
|
|||
Loading…
Reference in a new issue