Bootstrap 4 + Jekyll transition #552
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "bootstrap4-transition"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
#544
HTML Preview
http://ptio.airdns.org:44449
@kewde @bakku @Atavic @Hillside502 @beerisgood @beardog108 Can we merge?
Some new features
{% include %}
s.Screenshots
on mobile (tables have a horizontal scrollbar and links break to avoid creating a horizontal scrollbar on the page)
Based on preview, looks good to me. Nice work.
I think the long-strings class is not working correctly.
.
Thanks for pointing that out. I'll fix it.
I resolved conflicts by ignoring all changes in master. I re-added this change manually.
I'll merge this PR now, but I'll close #544 once we resolve the messy navbar issue.
Seems like bootstrap is broken because of a missing map file.
Of course, the merge caused the site to break. I'm getting no errors in console, though.
I'll re-add the map file, one moment.
I don't think the missing map file is the issue.
ptio.airdns.org:44449 doesn't serve the map file and everything works there.
I'm getting this error:
I got the same error for popper.js, so I removed the last line from popper.js (the one that specified the map file). Note that this error shouldn't break anything. https://stackoverflow.com/a/21504707/7009314 map files are only useful for debugging. I think they are the cause of showing x.scss instead of boostrap.min.css in dev tools.
Ah. Old custom.css. Simply shift+F5 to clear cache.
That's kind of problem solved, but we want our users to have this cache deleted as well. Maybe changing
<link href="css/custom.css?v=1" rel="stylesheet">
to<link href="css/custom.css?v=2" rel="stylesheet">
would work?I appended all URLs to JS and CSS with
?v=4
. Now I understand why custom.css had that?v=1
in the URL to it.