mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Really fix #1311 by declaring CSS overrides as !important
this is needed because on RTD the common hosted theme stylesheets get added after the overrides.
This commit is contained in:
parent
00a5a0f0df
commit
46c865f295
1 changed files with 4 additions and 4 deletions
8
docs/_static/theme_overrides.css
vendored
8
docs/_static/theme_overrides.css
vendored
|
|
@ -1,12 +1,12 @@
|
||||||
|
|
||||||
/* override table width restrictions */
|
/* override table width restrictions */
|
||||||
.wy-table-responsive table td, .wy-table-responsive table th {
|
.wy-table-responsive table td, .wy-table-responsive table th {
|
||||||
white-space: normal;
|
/* !important prevents the common CSS stylesheets from
|
||||||
|
overriding this as on RTD they are loaded after this stylesheet */
|
||||||
|
white-space: normal !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wy-table-responsive {
|
.wy-table-responsive {
|
||||||
margin-bottom: 24px;
|
overflow: visible !important;
|
||||||
max-width: 100%;
|
|
||||||
overflow: visible;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue