danheron/Heron.MudCalendar

Monthview Scroll overflow-y

Closed this issue · 4 comments

I think if the monthview overflow-y was set to auto instead of scroll the component would look cleaner.

Willing to do a PR

  • Want the css to be set to auto
  • OR make a property to set this?

In my personal project I tried to set the overflow-y to auto via a style but I was not successful - could you point to where overflow-y scroll is coming from?

Thank you

I found I had to use !important and it worked for my personal project.

.mud-cal-month-dropzone {
     overflow-y: auto !important;
}

This fix works for me, but still willing to do the PR if you deem it important enough.

Thank you

To add a similar issue, I am making a page where I hide all Toolbar elements from the calendar. When doing this there is whitespace leftover where the toolbar items used to be.

Fix:

.mud-cal-toolbar {
     padding: 0px !important;
}

Should this library auto hide this padding if there are no toolbar elements?

Thank you

There is already an issue for the scrollbars #119. This has been completed but not released yet.

The problem where there is empty space if you hide all the toolbar buttons is a bug. I will fix it.

@danheron thank you, missed that issue.