backdrop-contrib / fullcalendar_views

Views style plugin to render all sorts of date fields as event calendar with FullCalendar
https://backdropcms.org/project/fullcalendar_views
GNU General Public License v2.0
2 stars 4 forks source link

Empty space under table head and under bottom line #4

Closed Egmund closed 2 years ago

Egmund commented 2 years ago

There is a margin or padding under the table head and at the bottom of last (bottom) line in table in all three views, month, week, day, which means the inner vertical lines of the table have gaps and top dates/times are a little low. I have not been able to locate (yet) where this comes from. It does not exist in the 'old' fullcalendar, nor in Drupal 7 calendar.

indigoxela commented 2 years ago

There is a margin or padding under the table head and at the bottom of last (bottom) line

Can you provide a screenshot where you highlight the padding/margin? I'm not sure what you refer to.

Egmund commented 2 years ago

YesSir, First: Goind down through the classes and divs: There is a 8px padding in

Is this maybe where the 'trouble' starts?
Egmund commented 2 years ago

billede Hope the pix got here. The vertical lines between the days does not go al the way up. There is a gap of about 8px. The first - leftmost outer line is fine. The numbers also have more space above them than lower rows

Egmund commented 2 years ago

billede

Egmund commented 2 years ago

The bottom line also have lines w. gap but at the bottom: billede

indigoxela commented 2 years ago

I see, that's the Basis stylesheet fiddling in here. To override that, you only need to remove the margin.

.fullcalendar-view table {
  margin: 0;
}
Egmund commented 2 years ago

I am using Axioma, but probably. I will try this.

Egmund commented 2 years ago

Yes, that is it. Problem solved.

indigoxela commented 2 years ago

Right, other themes might also define a margin, that's not uncommon. That makes me think that this module should ship with a stylesheet to fix that...

indigoxela commented 2 years ago

... makes me think that this module should ship with a stylesheet to fix that

Stylesheet added. @Egmund many thanks for the hint. :+1: