From a37544a063a6eaf8536ab628b34419c35ef516e5 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Thu, 6 Feb 2014 19:04:12 -0300 Subject: [PATCH] design for vote plugin --- images/negative-hand.png | Bin 0 -> 1114 bytes images/positive-hand.png | Bin 0 -> 1123 bytes style.css | 31 +++++++++++++++++++++++++++++++ 3 files changed, 31 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 0ffad9a..7859754 100644 --- a/style.css +++ b/style.css @@ -1480,4 +1480,35 @@ body.contraste .ui-widget-header .ui-state-active { background-color: #000; } +/* 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; +} + + -- libgit2 0.21.2