forked from extern/egroupware
Calendar - Prevent event list from going to far down (off bottom of screen)
This commit is contained in:
parent
ee5aba82f4
commit
165c792bac
@ -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