Add border between nm header & nm, align with mail preview toolbar

This commit is contained in:
nathan 2024-11-05 14:12:58 -07:00
parent fd624806dc
commit 86c014fb94
3 changed files with 16 additions and 1 deletions

View File

@ -515,7 +515,7 @@ et2-details.details {width: 100%}
top: 0; top: 0;
} }
#mail-index_toolbar { #mail-index_toolbar {
height: 35px; height: 2.95em;
} }
#mail-index_toolbar > button > span { #mail-index_toolbar > button > span {
padding: .2em .4em; padding: .2em .4em;

View File

@ -7256,6 +7256,12 @@ img.et2_button_icon[src*="svg"]:hover {
padding: 0; padding: 0;
border-bottom: var(--sl-panel-border-width) solid var(--sl-panel-border-color); border-bottom: var(--sl-panel-border-width) solid var(--sl-panel-border-color);
} }
.et2_nextmatch .nextmatch_header {
border-bottom: var(--sl-panel-border-width) solid var(--sl-panel-border-color);
}
.et2_nextmatch .nextmatch_header .nextmatch_header_row {
padding-bottom: 0.25em;
}
div.flatpickr-calendar { div.flatpickr-calendar {
border-radius: var(--sl-border-radius-medium); border-radius: var(--sl-border-radius-medium);
} }

View File

@ -83,6 +83,15 @@
border-bottom: var(--sl-panel-border-width) solid var(--sl-panel-border-color); border-bottom: var(--sl-panel-border-width) solid var(--sl-panel-border-color);
} }
// Nextmatch
.et2_nextmatch .nextmatch_header {
border-bottom: var(--sl-panel-border-width) solid var(--sl-panel-border-color);
.nextmatch_header_row {
padding-bottom: 0.25em;
}
}
//rounded flatpickr //rounded flatpickr
div.flatpickr-calendar { div.flatpickr-calendar {
border-radius: var(--sl-border-radius-medium); border-radius: var(--sl-border-radius-medium);