From 1da336f15a96336b5c64ffe1d187c6534cc84091 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Wed, 19 Feb 2014 13:30:09 -0300 Subject: [PATCH] added icons for vote plugin --- images/negative-hand.png | Bin 0 -> 1114 bytes images/positive-hand.png | Bin 0 -> 1123 bytes style.css | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 0 deletions(-) create mode 100644 images/negative-hand.png create mode 100644 images/positive-hand.png diff --git a/images/negative-hand.png b/images/negative-hand.png new file mode 100644 index 0000000..59804b4 Binary files /dev/null and b/images/negative-hand.png differ diff --git a/images/positive-hand.png b/images/positive-hand.png new file mode 100644 index 0000000..44c85ca Binary files /dev/null and b/images/positive-hand.png differ diff --git a/style.css b/style.css index 9aba01c..191998d 100644 --- a/style.css +++ b/style.css @@ -1134,3 +1134,41 @@ div#notice { .comment-from-owner .comment-wrapper-6 { background-image: url(images/comment-owner-bg-SO.png); } .comment-from-owner .comment-wrapper-7 { background-image: url(images/comment-owner-bg-NL.png); } .comment-from-owner .comment-wrapper-8 { background-image: url(images/comment-owner-bg-NO.png); } + + +/* Plugin para curtir artigos e comentários */ + +.action .dislike:before { + content: url(images/negative-hand.png); +} + +.action .like:before { + content: url(images/positive-hand.png); +} + +.vote-action .like-action-active .action-icon { + opacity: 1; +} + +.vote-action .action-icon { + opacity: 0.5; +} + +#article .action .action-icon { + top: 3px; +} + +#article .like-action .like-action-counter { + color: #2A8C32; +} + +#article .dislike-action .like-action-counter { + color: #CC0000; +} + +.vote-actions { + position: relative; + right: 0; + top: 0; +} + -- libgit2 0.21.2