index.less 846 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @import '../../app.less';
  2. .g-button-wrapper {
  3. display: inline-block;
  4. .g-button {
  5. display: inline-block;
  6. text-align: center;
  7. padding: 0 10px;
  8. }
  9. }
  10. .g-button-wrapper.block {
  11. display: block;
  12. text-align: center;
  13. .g-button {
  14. display: block;
  15. }
  16. }
  17. .g-button-wrapper.basic {
  18. .g-button {
  19. line-height: 36px;
  20. }
  21. }
  22. .g-button-wrapper.lager {
  23. .g-button {
  24. line-height: 44px;
  25. font-size: 16px;
  26. }
  27. }
  28. .g-button-wrapper.lager.radius {
  29. .g-button {
  30. border-radius: 22px;
  31. }
  32. }
  33. .g-button-wrapper.basic.radius {
  34. .g-button {
  35. border-radius: 18px;
  36. }
  37. }
  38. .g-button-wrapper.default {
  39. .g-button {
  40. background: #41A6F3;
  41. color: #fff;
  42. }
  43. .g-button.touch {
  44. background: darken(#41A6F3, 10)
  45. }
  46. }
  47. .g-button-wrapper.disabled {
  48. .g-button {
  49. background: #C0C0C0 !important;
  50. color: #fff;
  51. }
  52. }