mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Merge pull request #2107 from nextcloud/fix-scrollbar-firefox
fix scrollbar in settings area in Firefox, improve on @pgys pull request
This commit is contained in:
commit
4458e294bc
1 changed files with 3 additions and 6 deletions
|
|
@ -463,12 +463,10 @@
|
|||
#app-settings {
|
||||
position: fixed;
|
||||
width: 250px; /* change to 100% when layout positions are absolute */
|
||||
max-height: 80%;
|
||||
bottom: 0;
|
||||
z-index: 140;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
#app-settings.open #app-settings-content,
|
||||
#app-settings.opened #app-settings-content {
|
||||
display: block;
|
||||
}
|
||||
|
|
@ -476,9 +474,6 @@
|
|||
display: none;
|
||||
padding: 10px;
|
||||
background-color: #fff;
|
||||
}
|
||||
#app-settings.open #app-settings-content {
|
||||
display: block;
|
||||
/* restrict height of settings and make scrollable */
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
|
|
@ -486,6 +481,8 @@
|
|||
#app-settings-content,
|
||||
#app-settings-header {
|
||||
border-right: 1px solid #eee;
|
||||
width: 250px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* display input fields at full width */
|
||||
|
|
|
|||
Loading…
Reference in a new issue