Calendar - Prevent event list from going to far down (off bottom of screen)

This commit is contained in:
nathangray 2018-05-10 09:41:37 -06:00
parent ee5aba82f4
commit 165c792bac
2 changed files with 5 additions and 1 deletions

View File

@ -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;

View File

@ -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);
}
// ************************************************