diff options
author | Go MAEDA <maeda@farend.jp> | 2024-11-12 08:18:41 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-11-12 08:18:41 +0000 |
commit | 3cb5a69f5ee4ba6705425358c0cde198828f1a34 (patch) | |
tree | edbc9d9819fbd330ebcc1c628f5cc81f1255f8eb | |
parent | 04f546f485212e1e22849848feecc651bf665ddb (diff) | |
download | redmine-3cb5a69f5ee4ba6705425358c0cde198828f1a34.tar.gz redmine-3cb5a69f5ee4ba6705425358c0cde198828f1a34.zip |
Fix layout distortion in issue list descriptions with code blocks (#40303).
git-svn-id: https://svn.redmine.org/redmine/trunk@23255 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/assets/stylesheets/application.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 0463ae569..f1166cbe0 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -360,8 +360,8 @@ tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;} tr.issue td.relations span, tr.issue td.watcher_users a {white-space: nowrap;} tr.issue td.watcher_users ul {list-style: none; padding: 0; margin: 0} table.issues td.block_column {color:#777; font-size:90%; padding:4px 4px 4px 24px; text-align:left; white-space:normal;} -table.issues td.block_column span {font-weight: bold; display: block; margin-bottom: 4px;} -table.issues td.block_column pre {white-space:normal;} +table.issues td.block_column>span {font-weight: bold; display: block; margin-bottom: 4px;} +table.issues td.block_column>pre {white-space:normal;} tr.idnt td.subject, tr.idnt td.name {background: url(/arrow_right.png) no-repeat 2px 50%;} tr.idnt-1 td.subject, tr.idnt-1 td.name {padding-left: 24px; background-position: 8px 50%;} |