Commit a37544a063a6eaf8536ab628b34419c35ef516e5

Authored by Victor Costa
1 parent 45dfb18d

design for vote plugin

images/negative-hand.png 0 → 100644

1.09 KB

images/positive-hand.png 0 → 100644

1.1 KB

style.css
... ... @@ -1480,4 +1480,35 @@ body.contraste .ui-widget-header .ui-state-active {
1480 1480 background-color: #000;
1481 1481 }
1482 1482  
  1483 +/* Plugin para curtir artigos e comentários */
  1484 +
  1485 +.action .dislike:before {
  1486 + content: url(images/negative-hand.png);
  1487 +}
  1488 +
  1489 +.action .like:before {
  1490 + content: url(images/positive-hand.png);
  1491 +}
  1492 +
  1493 +.vote-action .like-action-active .action-icon {
  1494 + opacity: 1;
  1495 +}
  1496 +
  1497 +.vote-action .action-icon {
  1498 + opacity: 0.5;
  1499 +}
  1500 +
  1501 +#article .action .action-icon {
  1502 + top: 3px;
  1503 +}
  1504 +
  1505 +#article .like-action .like-action-counter {
  1506 + color: #2A8C32;
  1507 +}
  1508 +
  1509 +#article .dislike-action .like-action-counter {
  1510 + color: #CC0000;
  1511 +}
  1512 +
  1513 +
1483 1514  
... ...