Fix some overlap styling issues with sub-headers

In particular, call list buttons and most date filters were overlapping the row count
This commit is contained in:
nathan 2022-09-07 09:54:09 -06:00
parent 0fb1f32152
commit 3380b867b8
2 changed files with 2 additions and 2 deletions

View File

@ -3442,7 +3442,7 @@ export class et2_nextmatch_header_bar extends et2_DOMWidget implements et2_INext
this.count_total = jQuery(document.createElement("span"))
.appendTo(this.count)
.text(settings.total + "");
this.count.prependTo(this.right_div);
this.count.appendTo(this.row_div);
// Favorites
this._setup_favorites(settings['favorites']);

View File

@ -2196,9 +2196,9 @@ lion-validation-feedback[type] {
border: 1px solid rgb(212, 212, 216); /* --sl-input-border-color */
text-align: center;
border-radius: 3px;
float: right;
position: relative;
min-width: 40px;
order: 99;
}
.nextmatch_header .header_count span {