Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css files in incorrect order #9

Open
pedromorgan opened this issue Aug 2, 2019 · 1 comment
Open

css files in incorrect order #9

pedromorgan opened this issue Aug 2, 2019 · 1 comment

Comments

@pedromorgan
Copy link

any user css files are included before bootstrap. Should be after/last to override instead, eg as in custom.css below:

Current

<link rel="stylesheet" href="../_static/basic.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
<link rel="stylesheet" href="../_static/bootstrap-4.3.1-dist/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="../_static/sphinxbootstrap4.css" type="text/css" />

Should be

<link rel="stylesheet" href="../_static/basic.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<link rel="stylesheet" href="../_static/bootstrap-4.3.1-dist/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="../_static/sphinxbootstrap4.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
@Hecatron
Copy link

Hecatron commented Oct 4, 2019

This should now be fixed in the below pull request
5d2eb17

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants