mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 10:23:28 +01:00
Calendar - Prevent event list from going to far down (off bottom of screen)
This commit is contained in:
parent
cfa65c7150
commit
2e078df6d4
@ -1506,6 +1506,8 @@ img.calendar_print_appicon {
|
||||
#calendar-list {
|
||||
/* Keeps the scrollbar in the window in chrome */
|
||||
margin-right: 10px;
|
||||
/* Prevents going to far down (off bottom)*/
|
||||
height: calc(100% - 75px);
|
||||
}
|
||||
#calendar_sidebox_content .egw_fw_ui_category_content {
|
||||
padding-left: 0px !important;
|
||||
|
@ -27,7 +27,9 @@
|
||||
|
||||
#calendar-list {
|
||||
/* Keeps the scrollbar in the window in chrome */
|
||||
margin-right: 10px
|
||||
margin-right: 10px;
|
||||
/* Prevents going to far down (off bottom)*/
|
||||
height: calc(100% - 75px);
|
||||
}
|
||||
|
||||
// ************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user