diff options
author | Go MAEDA <maeda@farend.jp> | 2020-03-19 02:04:37 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-03-19 02:04:37 +0000 |
commit | 5ddee7d677d3ac4bfe23812ff77b8ceb8ad147ff (patch) | |
tree | 8fc41939ad8420a12249666102e8b0104c78150c /public | |
parent | 348df5f978bed97342c661c4bdb47ab43f2096ce (diff) | |
download | redmine-5ddee7d677d3ac4bfe23812ff77b8ceb8ad147ff.tar.gz redmine-5ddee7d677d3ac4bfe23812ff77b8ceb8ad147ff.zip |
Add the same style as Subject column to Parent task subject column in the issues list (#33163).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@19582 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 131da3213..8f92c8e98 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -239,7 +239,7 @@ table.list, .table-list { border: 1px solid #e4e4e4; width: 100%; margin-bottom: table.list th, .table-list-header { background-color:#EEEEEE; padding: 4px; white-space:nowrap; font-weight:bold; } table.list td {text-align:center; vertical-align:middle; padding-right:10px;} table.list td.id { width: 2%; text-align: center;} -table.list td.name, table.list td.description, table.list td.subject, table.list td.comments, table.list td.roles, table.list td.attachments, table.list td.text, table.list td.short_description {text-align: left;} +table.list td.name, table.list td.description, table.list td.subject, table.list td.parent-subject, table.list td.comments, table.list td.roles, table.list td.attachments, table.list td.text, table.list td.short_description {text-align: left;} table.list td.attachments span {display: block; height: 16px;} table.list td.attachments span a.icon-download {display: inline-block; visibility: hidden;} @@ -265,7 +265,7 @@ tr.project.closed, tr.project.archived { color: #aaa; } tr.project.closed a, tr.project.archived a { color: #aaa; } tr.issue { text-align: center; white-space: nowrap; } -tr.issue td.subject, tr.issue td.category, td.assigned_to, td.last_updated_by, tr.issue td.string, tr.issue td.text, tr.issue td.list, tr.issue td.relations, tr.issue td.parent { white-space: normal; } +tr.issue td.subject, tr.issue td.parent-subject, tr.issue td.category, td.assigned_to, td.last_updated_by, tr.issue td.string, tr.issue td.text, tr.issue td.list, tr.issue td.relations, tr.issue td.parent { white-space: normal; } tr.issue td.relations { text-align: left; } tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;} tr.issue td.relations span {white-space: nowrap;} |