Drop custom styling for admonitions

This commit is contained in:
Pradyun Gedam 2020-10-19 20:06:17 +05:30
parent 19717d1701
commit f3ee03d6d0
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
2 changed files with 0 additions and 9 deletions

View File

@ -155,7 +155,6 @@ def setup(app: Sphinx) -> Dict[str, Union[bool, str]]:
rebuild=rebuild_trigger,
)
app.add_css_file('important-admonition.css')
app.connect('source-read', _modify_rst_document_source_on_read)
return {

View File

@ -1,8 +0,0 @@
.admonition.important {
background-color: rgb(219, 250, 244);
border: 1px solid rgb(26, 188, 156);
}
.admonition.important>.admonition-title {
color: rgb(26, 188, 156);
}