summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-20 11:04:41 +0400
committerAndrew Dolgov <[email protected]>2013-03-20 11:04:41 +0400
commit54bc5594ab26ae961bb92c113a1d2815044e450f (patch)
treee031082a55eeb77bc6cc4a25225eca8dcae5fba1
parent3ac153f1b3db2baac92dd3e9499992f99f580782 (diff)
limit width of p elements inside content frames
-rw-r--r--cdm.css4
-rw-r--r--tt-rss.css4
2 files changed, 8 insertions, 0 deletions
diff --git a/cdm.css b/cdm.css
index 6fc5b0631..7d02bc645 100644
--- a/cdm.css
+++ b/cdm.css
@@ -151,3 +151,7 @@ div.cdmHeader div.hlFeed, div.cdmHeader div.hlFeed a {
font-style : italic;
font-size : 11px;
}
+
+div.cdmContentInner p {
+ max-width : 650px;
+}
diff --git a/tt-rss.css b/tt-rss.css
index 545d8c8d1..3661df44f 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1193,3 +1193,7 @@ ul.helpKbList h2 {
span.collapseBtn {
cursor : pointer;
}
+
+div.postContent p {
+ max-width : 650px;
+}