Commit 29a0d993 authored by Ciro Santilli's avatar Ciro Santilli

Factor .add-diff-note active state.

parent ac516abe
...@@ -143,6 +143,11 @@ ul.notes { ...@@ -143,6 +143,11 @@ ul.notes {
*/ */
.diff-file tr.line_holder { .diff-file tr.line_holder {
@mixin show-add-diff-note {
filter: alpha(opacity=100);
opacity: 1.0;
}
.add-diff-note { .add-diff-note {
background: image-url("diff_note_add.png") no-repeat left 0; background: image-url("diff_note_add.png") no-repeat left 0;
height: 22px; height: 22px;
...@@ -156,8 +161,7 @@ ul.notes { ...@@ -156,8 +161,7 @@ ul.notes {
filter: alpha(opacity=0); filter: alpha(opacity=0);
&:hover { &:hover {
opacity: 1.0; @include show-add-diff-note;
filter: alpha(opacity=100);
} }
} }
...@@ -166,8 +170,7 @@ ul.notes { ...@@ -166,8 +170,7 @@ ul.notes {
background: $hover !important; background: $hover !important;
.add-diff-note { .add-diff-note {
opacity: 1.0; @include show-add-diff-note;
filter: alpha(opacity=100);
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment