diff options
author | Go MAEDA <maeda@farend.jp> | 2022-12-01 04:09:57 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-12-01 04:09:57 +0000 |
commit | d4229f510221615e256f19b2745b0d32a7c810f8 (patch) | |
tree | 6bd920d0ef63ef9fac70b651903cde4b63c737e4 /public/help | |
parent | c0f60e5febf1445ecf1f0b530bd418aaba8eb7c1 (diff) | |
download | redmine-d4229f510221615e256f19b2745b0d32a7c810f8.tar.gz redmine-d4229f510221615e256f19b2745b0d32a7c810f8.zip |
Fix duplicate vertical-align property in wiki_syntax.css (#37983).
Patch by Go MAEDA.
git-svn-id: https://svn.redmine.org/redmine/trunk@21972 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help')
-rw-r--r-- | public/help/wiki_syntax.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/help/wiki_syntax.css b/public/help/wiki_syntax.css index 86602281f..a5f613599 100644 --- a/public/help/wiki_syntax.css +++ b/public/help/wiki_syntax.css @@ -2,7 +2,7 @@ h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; colo body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; } pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace; } table th { padding-top: 1em; } -table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;} +table td { background-color: #f5f5f5; height: 2em; vertical-align: middle;} table td code { font-size: 1.2em; } table td h1 { font-size: 1.8em; text-align: left; } table td h2 { font-size: 1.4em; text-align: left; } |