add wrapping and set alignment for long text custom fields, fixes #19
This commit is contained in:
@@ -60,6 +60,10 @@ If you need to customize styles for [Redmine Backlogs][redmine_backlogs] remembe
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
Latest (master):
|
||||||
|
|
||||||
|
* Fixed #19: missing text wrapping for long text custom fields
|
||||||
|
|
||||||
v1.7.2 (2015-10-12):
|
v1.7.2 (2015-10-12):
|
||||||
|
|
||||||
* Fixed `.pagination` float in project members settings
|
* Fixed `.pagination` float in project members settings
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ table.list {
|
|||||||
&.status,
|
&.status,
|
||||||
&.string,
|
&.string,
|
||||||
&.subject,
|
&.subject,
|
||||||
|
&.text,
|
||||||
&.user {
|
&.user {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
@@ -134,14 +135,14 @@ tr.issue {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
&.string,
|
.string,
|
||||||
&.text,
|
.text,
|
||||||
.subject,
|
.subject,
|
||||||
.category {
|
.category {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.relations {
|
.relations {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
|
||||||
@@ -150,21 +151,11 @@ tr.issue {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.done_ratio table.progress {
|
|
||||||
margin-right: auto;
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.idnt .subject a {
|
&.idnt .subject a {
|
||||||
padding-left: 16px;
|
padding-left: 10px;
|
||||||
@extend %image-arrow-right;
|
@extend %image-arrow-right;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-position: -5px 0;
|
||||||
@if $color-trackers {
|
|
||||||
background-position: 0 0;
|
|
||||||
} @else {
|
|
||||||
background-position: -5px 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.controller-issues.action-index & {
|
.controller-issues.action-index & {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user