diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-11-16 09:55:24 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-11-16 09:55:24 +0000 |
commit | ccafd6567251b77e7c4dc0b2ed96780801763875 (patch) | |
tree | 10096a8ba00efb20919a21464dece7e5aa2ff6af | |
parent | 1ba92ba3e04062b396ca32d642bac73711a8bca2 (diff) | |
download | redmine-ccafd6567251b77e7c4dc0b2ed96780801763875.tar.gz redmine-ccafd6567251b77e7c4dc0b2ed96780801763875.zip |
Fixes 'Unexpected duplicate selector "table th"' in wiki_syntax.css (#30069).
git-svn-id: https://svn.redmine.org/redmine/trunk@23285 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/assets/stylesheets/wiki_syntax.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/stylesheets/wiki_syntax.css b/app/assets/stylesheets/wiki_syntax.css index 868dbe4cc..068bae969 100644 --- a/app/assets/stylesheets/wiki_syntax.css +++ b/app/assets/stylesheets/wiki_syntax.css @@ -23,8 +23,9 @@ h1 { font-family: var(--fonts-main); font-size: 0.875rem; text-align: center; color: #444; } body { font-family: var(--fonts-main); font-size: 0.75rem; color: #444; } pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace; } -table th { padding-top: 1em; } table th { + padding-top: 1em; + img { border: 1px solid #bbb; opacity: 0.7; |