mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
put head text after css/js imports so it can override them
as discussed in PR #438
This commit is contained in:
parent
7894ab3312
commit
57b678a939
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ div[contenteditable="true"]:focus {
|
||||||
|
|
||||||
from aqt import mw
|
from aqt import mw
|
||||||
|
|
||||||
head = mw.baseHTML() + web_content.head + csstxt + jstxt
|
head = mw.baseHTML() + csstxt + jstxt + web_content.head
|
||||||
|
|
||||||
body_class = theme_manager.body_class()
|
body_class = theme_manager.body_class()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue