subscription.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .form-helper {
  2. display: inline-block;
  3. width: 1.3em;
  4. height: 1.3em;
  5. line-height: 1.3;
  6. vertical-align: initial;
  7. background-color: @gray;
  8. color: #FFF;
  9. font-weight: bolder;
  10. border-radius: 50%;
  11. &:hover,
  12. &:focus {
  13. color: #FFF;
  14. text-decoration: none;
  15. }
  16. }
  17. .price-breakdown {
  18. text-align: center;
  19. margin-bottom: -10px;
  20. }
  21. .input-feedback-message {
  22. display: none;
  23. font-size: 0.8em;
  24. .has-error & {
  25. display: inline-block;
  26. }
  27. }
  28. .payment-submit {
  29. padding-top: (@line-height-computed / 2);
  30. }
  31. .payment-method-toggle {
  32. margin-bottom: (@line-height-computed / 2);
  33. &-switch {
  34. display: inline-block;
  35. width: 50%;
  36. text-align: center;
  37. border: solid 1px @gray-lighter;
  38. border-radius: @border-radius-large 0 0 @border-radius-large;
  39. padding: (@line-height-computed / 2);
  40. color: @btn-switch-color;
  41. &:hover,
  42. &:focus {
  43. color: @btn-switch-color;
  44. text-decoration: none;
  45. }
  46. &:hover {
  47. color: @btn-switch-hover-color;
  48. }
  49. & + & {
  50. border-left-width: 0;
  51. border-radius: 0 @border-radius-large @border-radius-large 0;
  52. }
  53. &-selected {
  54. color: @link-active-color;
  55. box-shadow: inset 0 -2px 0 0;
  56. &:hover,
  57. &:focus {
  58. color: @link-active-color;
  59. }
  60. }
  61. }
  62. }
  63. .team-invite .message {
  64. margin: 3em 0;
  65. }
  66. .capitalised {
  67. text-transform:capitalize;
  68. }
  69. .three-d-secure-container {
  70. > .three-d-secure-recurly-container {
  71. height: 400px;
  72. > div[data-recurly="three-d-secure-container"] {
  73. height: 100%;
  74. }
  75. }
  76. }