Commit 1da336f15a96336b5c64ffe1d187c6534cc84091

Authored by Victor Costa
1 parent c3ec5274

added icons for vote plugin

images/negative-hand.png 0 → 100644

1.09 KB

images/positive-hand.png 0 → 100644

1.1 KB

style.css
... ... @@ -1134,3 +1134,41 @@ div#notice {
1134 1134 .comment-from-owner .comment-wrapper-6 { background-image: url(images/comment-owner-bg-SO.png); }
1135 1135 .comment-from-owner .comment-wrapper-7 { background-image: url(images/comment-owner-bg-NL.png); }
1136 1136 .comment-from-owner .comment-wrapper-8 { background-image: url(images/comment-owner-bg-NO.png); }
  1137 +
  1138 +
  1139 +/* Plugin para curtir artigos e comentários */
  1140 +
  1141 +.action .dislike:before {
  1142 + content: url(images/negative-hand.png);
  1143 +}
  1144 +
  1145 +.action .like:before {
  1146 + content: url(images/positive-hand.png);
  1147 +}
  1148 +
  1149 +.vote-action .like-action-active .action-icon {
  1150 + opacity: 1;
  1151 +}
  1152 +
  1153 +.vote-action .action-icon {
  1154 + opacity: 0.5;
  1155 +}
  1156 +
  1157 +#article .action .action-icon {
  1158 + top: 3px;
  1159 +}
  1160 +
  1161 +#article .like-action .like-action-counter {
  1162 + color: #2A8C32;
  1163 +}
  1164 +
  1165 +#article .dislike-action .like-action-counter {
  1166 + color: #CC0000;
  1167 +}
  1168 +
  1169 +.vote-actions {
  1170 + position: relative;
  1171 + right: 0;
  1172 + top: 0;
  1173 +}
  1174 +
... ...