social-buttons.less 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Social Buttons Flavor
  3. // --------------------------------------------------
  4. // Those buttons simply add brand color over the .btn-default
  5. .misago-social-btn(@color) {
  6. &, &:disabled, &:disabled:hover, {
  7. color: @color;
  8. font-weight: bold;
  9. }
  10. }
  11. .btn-social-battlenet,
  12. .btn-social-battlenet-oauth2 {
  13. .misago-social-btn(#0e86ca);
  14. }
  15. .btn-social-bungie {
  16. .misago-social-btn(#0096db);
  17. }
  18. .btn-social-facebook,
  19. .btn-social-facebook-app {
  20. .misago-social-btn(#3b5998);
  21. }
  22. .btn-social-github,
  23. .btn-social-github-team,
  24. .btn-social-github-enterprise,
  25. .btn-social-github-enterprise-org,
  26. .btn-social-github-enterprise-team {
  27. .misago-social-btn(#000000);
  28. }
  29. .btn-social-gitlab {
  30. .misago-social-btn(#fc6d26);
  31. }
  32. .btn-social-google,
  33. .btn-social-google-oauth,
  34. .btn-social-google-oauth2,
  35. .btn-social-google-plus,
  36. .btn-social-google-openidconnect {
  37. .misago-social-btn(#dd4b39);
  38. }
  39. .btn-social-linkedin {
  40. .misago-social-btn(#0077b5);
  41. }
  42. .btn-social-steam {
  43. .misago-social-btn(#5c7e10);
  44. }
  45. .btn-social-twitter {
  46. .misago-social-btn(#1da1f2);
  47. }
  48. .form-social-auth {
  49. .row {
  50. margin-top: @padding-base-vertical * -1;
  51. margin-bottom: @padding-base-vertical * -1;
  52. }
  53. .btn {
  54. margin: @padding-base-vertical 0px;
  55. }
  56. }