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

Fix table style #30

Merged
merged 41 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
070a217
testing locking shibuya to 2024.4.4
chrizzFTD Apr 20, 2024
a5918d8
rolling back shibuya to pre table fix style commit
chrizzFTD Apr 20, 2024
0dcad71
unlock shibuya
chrizzFTD Apr 20, 2024
74cd24d
test custom css
chrizzFTD Apr 20, 2024
c6139d2
test table responsiveness
chrizzFTD Apr 20, 2024
2c8bce4
test
chrizzFTD Apr 20, 2024
2ee7cef
move custom css under static folder
chrizzFTD Apr 20, 2024
1836222
try diff
chrizzFTD Apr 20, 2024
70f7bb2
modern css declaration
chrizzFTD Apr 20, 2024
0d0a336
try unsetting
chrizzFTD Apr 20, 2024
b39529f
set to initial instead
chrizzFTD Apr 20, 2024
fa75bc9
change selector
chrizzFTD Apr 20, 2024
65798e2
unset
chrizzFTD Apr 20, 2024
8f85133
revert to dot
chrizzFTD Apr 20, 2024
d6e3985
colors again
chrizzFTD Apr 20, 2024
58afcaf
plz build
chrizzFTD Apr 20, 2024
90e220f
bottom width
chrizzFTD Apr 20, 2024
4f058fc
more
chrizzFTD Apr 20, 2024
e73719f
right
chrizzFTD Apr 20, 2024
eb44d4c
bg color
chrizzFTD Apr 20, 2024
bc044a6
only th
chrizzFTD Apr 20, 2024
d19f19c
go back to table
chrizzFTD Apr 20, 2024
099e830
revert to shibuya 2024.4.4
chrizzFTD Apr 20, 2024
b5c353d
lastrelated issue
chrizzFTD Apr 20, 2024
9d7a0e1
Revert "lastrelated issue"
chrizzFTD Apr 20, 2024
abbdefe
Revert "revert to shibuya 2024.4.4"
chrizzFTD Apr 20, 2024
2b24cb8
margin to 0
chrizzFTD Apr 20, 2024
75bfe3a
margin
chrizzFTD Apr 20, 2024
32153a2
testmoar test
chrizzFTD Apr 20, 2024
f56f9fa
test moar
chrizzFTD Apr 20, 2024
8cd7959
ohyes
chrizzFTD Apr 20, 2024
f7e6383
actall target
chrizzFTD Apr 20, 2024
80db14a
more targetting
chrizzFTD Apr 20, 2024
16737a6
swap for table
chrizzFTD Apr 20, 2024
bc89477
swap for docutils
chrizzFTD Apr 20, 2024
645a44e
do more
chrizzFTD Apr 20, 2024
9c15cef
target table docutils
chrizzFTD Apr 20, 2024
d772beb
feels close
chrizzFTD Apr 20, 2024
1ecba1d
adding explanation
chrizzFTD Apr 20, 2024
d2c4246
move PRs comment
chrizzFTD Apr 20, 2024
3f6443f
wording
chrizzFTD Apr 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/source/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* This is due to online RTD adding a wrapper to tables, which mess up shibuya's table style, adding space at the top and below each table.
shibuya 2024.4.8+ exposed this issue.
See related issues:
https://github.com/readthedocs/sphinx_rtd_theme/pull/1218
https://github.com/readthedocs/sphinx_rtd_theme/issues/1179
https://github.com/readthedocs/sphinx_rtd_theme/issues/117
*/
table.docutils {
margin-top: 0;
margin-bottom: 0;
}
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,9 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
# html_static_path = ['_static']

html_css_files = [
'custom.css',
]

# -- Options for HTMLHelp output ------------------------------------------

Expand Down
Loading