reordered footer tab icons; addressed pipeline layout FT error
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-24 00:49:04 -04:00
parent e59d5fd4c0
commit f347af7eff
2 changed files with 8 additions and 4 deletions

View File

@@ -18,9 +18,13 @@ class LayoutAndStylingTest(FunctionalTest):
&& !ancestor.classList.contains('container')) { && !ancestor.classList.contains('container')) {
ancestor = ancestor.parentElement; ancestor = ancestor.parentElement;
} }
var s = (ancestor || document.body).getBoundingClientRect(); var a = ancestor || document.body;
var r = arguments[0].getBoundingClientRect(); var s = a.getBoundingClientRect();
return [r.x + r.width / 2, s.x + s.width / 2]; var cs = window.getComputedStyle(a);
var pl = parseFloat(cs.paddingLeft);
var pr = parseFloat(cs.paddingRight);
var r = el.getBoundingClientRect();
return [r.x + r.width / 2, s.x + pl + (s.width - pl - pr) / 2];
""", el) """, el)
inputbox = note_page.get_item_input_box() inputbox = note_page.get_item_input_box()

View File

@@ -306,7 +306,7 @@ body {
gap: 0; gap: 0;
#id_footer_nav { #id_footer_nav {
flex-direction: column; flex-direction: column-reverse;
width: auto; width: auto;
max-width: none; max-width: none;
gap: 3rem; gap: 3rem;