This commit is contained in:
2026-01-23 11:08:45 +01:00
parent 48327dfba6
commit 875140d26c
+11 -8
View File
@@ -1248,20 +1248,20 @@ data:
border-radius: 12px;
}
/* =========================================================================
Fix widget header vertical alignment - center titles
Fix widget header vertical alignment - center titles (without changing size)
========================================================================= */
/* Remove the previous fix and use a simpler approach */
.widget-header {
display: flex !important;
align-items: center !important;
min-height: 40px !important;
padding-top: 8px !important;
padding-bottom: 8px !important;
/* Remove min-height and extra padding that made it too wide */
}
.widget-header .widget-title {
display: flex !important;
align-items: center !important;
line-height: 1.2 !important;
}
/* For split-column inner widget headers specifically */
@@ -1269,22 +1269,25 @@ data:
display: flex !important;
align-items: center !important;
justify-content: flex-start !important;
min-height: 36px !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
/* =========================================================================
Fix split-column padding and overflow
Fix split-column padding and overflow - allow shadows to show
========================================================================= */
.widget.widget-type-split-column > .widget-content {
padding: 12px !important;
}
/* Don't hide overflow - let shadows show */
.widget-type-split-column .masonry-column {
overflow: hidden !important;
overflow: visible !important;
}
.widget-type-split-column .masonry {
gap: 12px !important;
gap: 16px !important; /* Increase gap to give room for shadows */
}
/* Shrink hourly items to fit better */