Commit 01a8f388 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #3970 from jacargentina/notes-highlight

Style target notes for easy visual identification
parents a52936f3 4e4d99ec
/**
* Notes
*/
@-webkit-keyframes target-note {
from { background:#fffff0; }
50% { background:#ffffd3; }
to { background:#fffff0; }
}
ul.notes {
display: block;
list-style: none;
......@@ -91,6 +98,11 @@ ul.notes {
}
}
.note:target {
-webkit-animation:target-note 2s linear;
background: #fffff0;
}
// paint top or bottom borders depending on notes direction
&:not(.reversed) .note,
&:not(.reversed) .discussion {
......
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