fix: 生物由来照会からの横展開。ページ送りしたときにテーブルデータの幅が変わったら、ヘッダがずれるのを修正

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-07-28 09:17:32 +09:00
parent e4674d69e5
commit 2b3ce1376a
3 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* Bootstrap 5.10以降、box-sizingのデフォルト値によってテーブルがずれるため、このページ限定的にリセット */
/* @see https://bootstrap-guide.com/content/reboot#page-defaults */
*, ::after, ::before {
box-sizing: initial;
box-sizing: revert;
}
body {

View File

@ -210,6 +210,7 @@
$(val).off('keypress')
})
})
// ページ送りしたときにヘッダがずれるのを修正
FixedMidashi.remove();
FixedMidashi.create();
}

View File

@ -208,6 +208,9 @@
$(val).off('keypress')
})
})
// ページ送りしたときにヘッダがずれるのを修正
FixedMidashi.remove();
FixedMidashi.create();
}
})
});