diff options
author | Go MAEDA <maeda@farend.jp> | 2019-05-01 20:57:03 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-05-01 20:57:03 +0000 |
commit | fc8bc763620cfb5dcde5590302ee04d9c5ee5859 (patch) | |
tree | 2aa04ce8bd68d763a336bb001ebf9d4e5d02f786 /public | |
parent | 24ccf9d981d907ec7c8fa3901d0a79bc7f641825 (diff) | |
download | redmine-fc8bc763620cfb5dcde5590302ee04d9c5ee5859.tar.gz redmine-fc8bc763620cfb5dcde5590302ee04d9c5ee5859.zip |
Left align long text custom fields in the issues list (#31280).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18115 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index a068952f2..091aa8206 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -222,7 +222,7 @@ table.list, .table-list { border: 1px solid #e4e4e4; border-collapse: collapse; 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 {text-align: left;} +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 {text-align: left;} table.list td.attachments a {display:block;} table.list td.tick {width:15%} table.list td.checkbox { width: 15px; padding: 2px 0 0 0; } |