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;
|
background-color: #fff;
|
||||||
overflow-x: hidden !important;
|
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 {
|
#app-navigation-toggle {
|
||||||
position: fixed;
|
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 */
|
/* fix controls bar jumping when navigation is slid out */
|
||||||
.snapjs-left #app-navigation-toggle,
|
.snapjs-left #app-navigation-toggle,
|
||||||
.snapjs-left #controls {
|
.snapjs-left #controls {
|
||||||
|
|
Loading…
Reference in New Issue