Merge pull request #9370 from owncloud/design-fix-usermgmt-glitch
Design fix usermgmt glitch
This commit is contained in:
commit
ea756a12b0
|
@ -82,6 +82,11 @@
|
|||
background-color: #fff;
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
/* allow horizontal scrollbar in settings
|
||||
otherwise user management is not usable on mobile */
|
||||
#body-settings #app-content {
|
||||
overflow-x: auto !important;
|
||||
}
|
||||
|
||||
#app-navigation-toggle {
|
||||
position: fixed;
|
||||
|
@ -129,6 +134,15 @@ table.multiselect thead {
|
|||
}
|
||||
|
||||
|
||||
/* prevent overflow in user management controls bar */
|
||||
#usersearchform {
|
||||
display: none;
|
||||
}
|
||||
#body-settings #controls {
|
||||
min-width: 768px !important;
|
||||
}
|
||||
|
||||
|
||||
/* fix controls bar jumping when navigation is slid out */
|
||||
.snapjs-left #app-navigation-toggle,
|
||||
.snapjs-left #controls {
|
||||
|
|
Loading…
Reference in New Issue