diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-05-23 12:56:20 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-05-23 12:56:20 +0200 |
commit | 85a6173879bb2486e394fb8e6b8a107a59167374 (patch) | |
tree | 2143181cdaa134e0fab1f9b7dc72bbd89e0d91b0 /plugins/hide_blockquote/skins/default | |
parent | 70faa8e5558def0e035ec56fc4e9ca5b56aaa9ce (diff) |
hide_blockquote - a new plugin for hiding citation blocks
Diffstat (limited to 'plugins/hide_blockquote/skins/default')
-rw-r--r-- | plugins/hide_blockquote/skins/default/style.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/hide_blockquote/skins/default/style.css b/plugins/hide_blockquote/skins/default/style.css new file mode 100644 index 000000000..7b3c871c3 --- /dev/null +++ b/plugins/hide_blockquote/skins/default/style.css @@ -0,0 +1,31 @@ +span.blockquote-link { + font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; + top: 0; + cursor: pointer; + right: 5px; + height: 14px; + min-width: 40px; + padding: 0 8px; + font-size: 10px; + font-weight: bold; + color: #a8a8a8; + line-height: 14px; + text-decoration: none; + text-shadow: 0px 1px 1px #fff; + text-align: center; + border: 1px solid #e8e8e8; + border-top: none; + border-bottom-right-radius: 6px; + border-bottom-left-radius: 6px; + background: #fff; + background: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e8e8e8)); + background: -o-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%); + background: -ms-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%); + background: linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%); +} + +blockquote.blockquote-header { + text-overflow: ellipsis !important; + padding-right: 60px !important; +}
\ No newline at end of file |