summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-06-20 09:38:21 -0700
committerBernhard Posselt <nukeawhale@gmail.com>2013-06-20 09:38:21 -0700
commitecb531fd081b0210d67527f933ae18de2b6b0f34 (patch)
tree2ca401206fdc8068cac6bb80b8825ddf267a6a75
parent116ab598c7ca7e4d3822573d26452c9dd79e4160 (diff)
parent6759731a2f9fb4245dc32726e5ea4a49ef293bbf (diff)
Merge pull request #251 from mkzero/patch-2
Added styles to blockquotes
-rw-r--r--css/items.css17
1 files changed, 16 insertions, 1 deletions
diff --git a/css/items.css b/css/items.css
index 281080702..7f5307a32 100644
--- a/css/items.css
+++ b/css/items.css
@@ -258,7 +258,8 @@
line-height: 21px;
}
- .feed_item .body pre {
+ .feed_item .body pre,
+ .feed_item .body blockquote {
padding: 7px 7px 7px 14px;
background-color: #dadada;
border: 1px solid #ccc;
@@ -270,6 +271,20 @@
background-image: -ms-linear-gradient(top, rgb(215,215,215) 0%, rgb(220,220,220) 100%);
overflow-y: auto;
}
+ .feed_item .body pre::-webkit-scrollbar,
+ .feed_item .body blockquote::-webkit-scrollbar {
+ height: 10px;
+ }
+
+ .feed_item .body pre::-webkit-scrollbar-thumb,
+ .feed_item .body blockquote::-webkit-scrollbar-thumb {
+ background: #333;
+ }
+
+ .feed_item .body pre::-webkit-scrollbar-track-piece,
+ .feed_item .body blockquote::-webkit-scrollbar-track-piece {
+ background: #ddd;
+ }
.feed_item .body code,
.feed_item .body pre {