summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorTodd Vierling <[email protected]>2016-02-07 13:04:50 -0500
committerTodd Vierling <[email protected]>2016-02-07 15:47:31 -0500
commit6b8a7aad082f302b36a65d3d584ad8b01c79ce16 (patch)
tree16dc1ef5b1f8a4381c0d58926731d1f1a11e54c5 /css
parent378873b59afef40bbc6bf507032a453bc741808d (diff)
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.
Diffstat (limited to 'css')
-rw-r--r--css/cdm.css2
1 files changed, 2 insertions, 0 deletions
diff --git a/css/cdm.css b/css/cdm.css
index c7d34c4b7..1ee4715fb 100644
--- a/css/cdm.css
+++ b/css/cdm.css
@@ -211,6 +211,7 @@ div.cdm.active div.cdmContent {
}
span.cdmExcerpt {
+ white-space : nowrap;
font-size : 11px;
color : #999;
font-weight : normal;
@@ -275,6 +276,7 @@ div.cdmContentInner iframe {
}
div.cdmHeader span.author {
+ white-space : nowrap;
color : #555;
font-size : 11px;
font-weight : normal;