fix colored trackers in tooltips in Backlogs plugin

This commit is contained in:
mrliptontea
2015-08-24 09:08:57 +02:00
parent 5cafccd221
commit 15a492a1b6
6 changed files with 16 additions and 15 deletions

View File

@@ -69,6 +69,7 @@ Latest (master):
+ Configurable list borders and highlighting of hovered and even/odd rows
+ Introduce `$pagination-padding-` variables and make pagination buttons' height equal to buttons by default
* Fixed #16: remove `white-space: nowrap` from external links to prevent breaking the page with flexbox layout
* Fixed colored trackers in tooltips in Backlogs plugin
v1.6.0 (2015-06-10):

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -27,19 +27,19 @@ a {
color: $link-hover-color;
text-decoration: $link-hover-decoration;
}
}
&.issue.closed {
color: $link-color-issue-closed;
text-decoration: $link-closed-decoration;
}
.issue.closed {
color: $link-color-issue-closed;
text-decoration: $link-closed-decoration;
}
&.project.closed {
color: $link-color-project-closed;
}
.project.closed {
color: $link-color-project-closed;
}
&.user.locked {
color: $link-color-user-locked;
}
.user.locked {
color: $link-color-user-locked;
}

File diff suppressed because one or more lines are too long