reordered footer tab icons; addressed pipeline layout FT error
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -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()
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user