Commit cd5714b99841648ab2f74e290472c9e871c20800
1 parent
55998755
Exists in
master
and in
6 other branches
Link de participar
Showing
2 changed files
with
14 additions
and
6 deletions
Show diff stats
index.html
... | ... | @@ -98,6 +98,10 @@ |
98 | 98 | <script id="proposal-template" type="text/x-handlebars-template"> |
99 | 99 | <header> |
100 | 100 | <a id="display-contrast" href="#">Alto Contraste</a> |
101 | + <div class="login"> | |
102 | + <a href="#" class="button">Participe</a> | |
103 | + <a href="#">Entrar</a> | |
104 | + </div> | |
101 | 105 | <div class="social top"> |
102 | 106 | {{#social_share "Dialoga Brasil" "Aqui suas ideias viram propostas e você ajuda a melhorar as ações do governo" "#"}}{{/social_share}} |
103 | 107 | </div> |
... | ... | @@ -419,10 +423,11 @@ |
419 | 423 | |
420 | 424 | <script id="social-share" type="text/x-handlebars-template"> |
421 | 425 | <ul> |
422 | - <li><a href="{{url}}" class="fb-share icon icon-facebook" data-caption="{{title}}" data-description="{{stripTags description}}">Compartilhar no Facebook</a></li> | |
423 | - <li><a href="https://twitter.com/intent/tweet?url={{encodeURI url}}&text={{stripTags description}}" class="tw-share icon icon-twitter popup">Compartilhar no Twitter</a></li> | |
424 | - <li><a href="https://plus.google.com/share?url={{encodeURI url}}" class="gp-share icon icon-gplus popup">Compartilhar no Google Plus</a></li> | |
425 | - <li><a href="whatsapp://send?text={{stripTags description}} {{encodeURI url}}" class="ws-share icon icon-whatsapp">Compartilhar no WhatsApp</a></li> | |
426 | + <li><a href="{{url}}" class="fb-share icon icon-facebook" data-caption="{{title}}" data-description="{{stripTags description}}"><span class="fa fa-facebook"></span><span class="sr-only">Compartilhar no Facebook</span></a></li> | |
427 | + <li><a href="https://twitter.com/intent/tweet?url={{encodeURI url}}&text={{stripTags description}}" class="tw-share icon icon-twitter popup"><span class="fa fa-twitter"></span><span class="sr-only">Compartilhar no Twitter</span></a></li> | |
428 | + <li><a href="https://plus.google.com/share?url={{encodeURI url}}" class="gp-share icon icon-gplus popup"><span class="fa fa-google-plus"></span><span class="sr-only">Compartilhar no Google Plus</span></a></li> | |
429 | + <li><a href="whatsapp://send?text={{stripTags description}} {{encodeURI url}}" class="ws-share icon icon-whatsapp"><span class="fa fa-whatsapp"></span><span class="sr-only">Compartilhar no WhatsApp</span></a></li> | |
430 | + <li><a href="whatsapp://send?text={{stripTags description}} {{encodeURI url}}" class="ws-share icon icon-email"><span class="fa fa-envelope-o"></span><span class="sr-only">Enviar por email</span></a></li> | |
426 | 431 | </ul> |
427 | 432 | </script> |
428 | 433 | ... | ... |
sass/_share.scss
... | ... | @@ -37,11 +37,14 @@ |
37 | 37 | background-position: 50% !important; |
38 | 38 | background-size: auto !important; |
39 | 39 | border: 0 !important; |
40 | + color: #fff; | |
40 | 41 | display: inline-block; |
42 | + font-size: 20px; | |
41 | 43 | height: 36px; |
42 | 44 | min-width: 0 !important; |
43 | - padding: 0 !important; | |
44 | - text-indent: -999999px; | |
45 | + padding: 9px 0 !important; | |
46 | + // text-indent: -999999px; | |
47 | + text-align: center; | |
45 | 48 | width: 36px; |
46 | 49 | &-facebook { |
47 | 50 | background-image: url(images/icons/icon-facebook.png) !important; | ... | ... |