Make sure author and excerpt spans don't wrap even if active.
In combined display mode with an article collapsed via keyboard nav, the article remains active, which lets the excerpt bubble out to several lines depending on display width. Keep the excerpt nowrap always. While here, fix the author display; nowrap always to keep the name from splitting across lines in rare cases.
This commit is contained in:
parent
378873b59a
commit
6b8a7aad08
|
@ -211,6 +211,7 @@ div.cdm.active div.cdmContent {
|
||||||
}
|
}
|
||||||
|
|
||||||
span.cdmExcerpt {
|
span.cdmExcerpt {
|
||||||
|
white-space : nowrap;
|
||||||
font-size : 11px;
|
font-size : 11px;
|
||||||
color : #999;
|
color : #999;
|
||||||
font-weight : normal;
|
font-weight : normal;
|
||||||
|
@ -275,6 +276,7 @@ div.cdmContentInner iframe {
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cdmHeader span.author {
|
div.cdmHeader span.author {
|
||||||
|
white-space : nowrap;
|
||||||
color : #555;
|
color : #555;
|
||||||
font-size : 11px;
|
font-size : 11px;
|
||||||
font-weight : normal;
|
font-weight : normal;
|
||||||
|
|
Loading…
Reference in New Issue