Fix missing scrollbar when version diff table is too wide for screen

at least, this seems to fix.  not sure if/why we shouldn't apply this style
globally always, but playing it safe for now
This commit is contained in:
Lance Edgar 2020-08-01 22:18:54 -05:00
parent 6bd049e0bb
commit 9a2a6bbc9f

View file

@ -3,6 +3,17 @@
<%def name="title()">changes @ ver ${transaction.id}</%def>
<%def name="extra_styles()">
${parent.extra_styles()}
<style type="text/css">
.this-page-content {
overflow: auto;
}
</style>
</%def>
<%def name="page_content()">
## TODO: this was basically copied from Revel diff template..need to abstract