Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fc5b48aabe | ||
|
|
5e04839cfd | ||
|
|
ad138b9331 |
@@ -56,6 +56,10 @@ If you need to customize styles for [Redmine Backlogs][redmine_backlogs] remembe
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
v2.7.0 (2019-06-13):
|
||||||
|
|
||||||
|
* Resolved #124: added support for [issue-id](http://projects.andriylesyuk.com/projects/issue-id/) plugin.
|
||||||
|
|
||||||
v2.6.0 (2019-06-13):
|
v2.6.0 (2019-06-13):
|
||||||
|
|
||||||
* Resolved #121: added support for [redmine_wiki_page_tree](https://github.com/ledsun/redmine_wiki_page_tree) plugin.
|
* Resolved #121: added support for [redmine_wiki_page_tree](https://github.com/ledsun/redmine_wiki_page_tree) plugin.
|
||||||
|
|||||||
@@ -50,13 +50,17 @@ table.list {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.id,
|
&.id,
|
||||||
|
&.issue_id,
|
||||||
|
&.legacy_id,
|
||||||
&.parent,
|
&.parent,
|
||||||
&.relations,
|
&.relations,
|
||||||
&.tracker {
|
&.tracker {
|
||||||
width: 2%;
|
width: 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.id {
|
&.id,
|
||||||
|
&.issue_id,
|
||||||
|
&.legacy_id {
|
||||||
font-weight: $font-weight-bold;
|
font-weight: $font-weight-bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,10 +85,6 @@ table.list {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.id {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.activity,
|
&.activity,
|
||||||
&.assigned_to,
|
&.assigned_to,
|
||||||
&.attachments,
|
&.attachments,
|
||||||
@@ -108,6 +108,8 @@ table.list {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.id,
|
||||||
|
&.legacy_id,
|
||||||
&.estimated_hours,
|
&.estimated_hours,
|
||||||
&.float,
|
&.float,
|
||||||
&.int,
|
&.int,
|
||||||
@@ -384,6 +386,8 @@ tr.entry {
|
|||||||
|
|
||||||
@if $color-trackers {
|
@if $color-trackers {
|
||||||
tr.issue .id > a,
|
tr.issue .id > a,
|
||||||
|
tr.issue .issue_id > a,
|
||||||
|
tr.issue .legacy_id > a,
|
||||||
a.issue,
|
a.issue,
|
||||||
.relations > span > a.issue,
|
.relations > span > a.issue,
|
||||||
.parent > a.issue {
|
.parent > a.issue {
|
||||||
@@ -432,7 +436,8 @@ tr.entry {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.issue .id > a {
|
tr.issue .id > a,
|
||||||
|
tr.issue .legacy_id > a {
|
||||||
display: block;
|
display: block;
|
||||||
padding: $tracker-list-padding;
|
padding: $tracker-list-padding;
|
||||||
|
|
||||||
@@ -442,6 +447,11 @@ tr.entry {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tr.issue .issue_id > a {
|
||||||
|
display: inline-block;
|
||||||
|
padding: $tracker-list-padding;
|
||||||
|
}
|
||||||
|
|
||||||
@each $tracker-id, $tracker-colors in $tracker-colors-map {
|
@each $tracker-id, $tracker-colors in $tracker-colors-map {
|
||||||
@include tracker(
|
@include tracker(
|
||||||
".tracker-#{$tracker-id}",
|
".tracker-#{$tracker-id}",
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
|
|
||||||
@mixin tracker($parent, $background, $color) {
|
@mixin tracker($parent, $background, $color) {
|
||||||
tr#{$parent} .id > a,
|
tr#{$parent} .id > a,
|
||||||
|
tr#{$parent} .issue_id > a,
|
||||||
a#{$parent},
|
a#{$parent},
|
||||||
.relations > span > a#{$parent},
|
.relations > span > a#{$parent},
|
||||||
.parent > a#{$parent} {
|
.parent > a#{$parent} {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user