add wrapping and set alignment for long text custom fields, fixes #19

This commit is contained in:
mrliptontea
2015-12-03 23:49:44 +00:00
parent f3a617baf0
commit 61b6475e9e
3 changed files with 12 additions and 17 deletions

View File

@@ -60,6 +60,10 @@ If you need to customize styles for [Redmine Backlogs][redmine_backlogs] remembe
## Changelog
Latest (master):
* Fixed #19: missing text wrapping for long text custom fields
v1.7.2 (2015-10-12):
* Fixed `.pagination` float in project members settings

View File

@@ -71,6 +71,7 @@ table.list {
&.status,
&.string,
&.subject,
&.text,
&.user {
text-align: left;
}
@@ -134,14 +135,14 @@ tr.issue {
text-align: center;
white-space: nowrap;
&.string,
&.text,
.string,
.text,
.subject,
.category {
white-space: normal;
}
&.relations {
.relations {
text-align: left;
white-space: normal;
@@ -150,22 +151,12 @@ tr.issue {
}
}
&.done_ratio table.progress {
margin-right: auto;
margin-left: auto;
}
&.idnt .subject a {
padding-left: 16px;
padding-left: 10px;
@extend %image-arrow-right;
background-repeat: no-repeat;
@if $color-trackers {
background-position: 0 0;
} @else {
background-position: -5px 0;
}
}
.controller-issues.action-index & {
&.assigned-to-me {

File diff suppressed because one or more lines are too long