mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 03:09:58 +03:00
fixes #1133 adapt the height of the scrolling menu for plugins, depending on browser available height.
Also, change background color of this scrollbar.
This commit is contained in:
parent
90e4a63ea1
commit
29cc543a14
1 changed files with 22 additions and 1 deletions
|
@ -864,7 +864,7 @@ html, body {height:100; min-height: 100%; margin:0; padding:0;}
|
|||
margin-left:0;
|
||||
}
|
||||
|
||||
#menubar ul.scroll { overflow-y:auto; max-height:500px; }
|
||||
#menubar ul.scroll { overflow-y:auto; max-height:500px; scrollbar-color: #666 #3c3c3c;}
|
||||
#menubar dl { width: 205px; min-height:35px; border:0; margin: 0; padding: 0; display: block; border:0; border-left:none; }
|
||||
#menubar dd { margin: 0; padding: 10px 0; }
|
||||
#menubar dt {
|
||||
|
@ -890,6 +890,27 @@ html, body {height:100; min-height: 100%; margin:0; padding:0;}
|
|||
margin-top: 2px;
|
||||
}
|
||||
|
||||
@media all and (max-height: 920px) {
|
||||
#menubar ul.scroll {
|
||||
max-height: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-height: 830px) {
|
||||
#menubar ul.scroll {
|
||||
max-height: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-height: 700px) {
|
||||
#menubar ul.scroll {
|
||||
max-height: 200px;
|
||||
}
|
||||
#theAdminPage #footer {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* tabsheets are often used in admin pages => No specific css files */
|
||||
#tabsheet {
|
||||
width:auto;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue