Commit c0134dc0 authored by Randall Leeds's avatar Randall Leeds

fix excerpt dimensions

parent 1114acdf
......@@ -181,10 +181,12 @@ class Hypothesis extends Annotator
this.showViewer([a], true)
else
excerpts.enter()
.insert('li', '.hyp-annotation').classed('hyp-widget', true)
.append('div').classed('hyp-excerpt', true)
.insert('li', '.hyp-annotation')
.classed('hyp-widget', true)
.classed('hyp-excerpt', true)
.append('div')
excerpts.exit().remove()
excerpts.select('div.hyp-excerpt').text((d) -> d.message.annotation.quote)
excerpts.select('div').text((d) -> d.message.annotation.quote)
loop
context = context.select('.annotator-listing')
......
......@@ -432,9 +432,12 @@ $threadexp-width: 1em;
//EXCERPT
.hyp-excerpt {
font-family: serif;
font-size: 1.1em;
color: black; }
div {
font-family: serif;
font-size: 1.1em;
color: black;
}
}
//ANNOTATION DETAIL
.hyp-reply {
......
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