subscription.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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-container--react {
  71. > .three-d-secure-recurly-container {
  72. height: 400px;
  73. > div[data-recurly='three-d-secure-container'] {
  74. height: 100%;
  75. }
  76. }
  77. }
  78. .price-switch-header {
  79. margin-bottom: @line-height-computed;
  80. h2 {
  81. margin: 0;
  82. }
  83. }
  84. .price-feature-description {
  85. h3 {
  86. margin-top: 0;
  87. }
  88. h4 {
  89. margin-top: 5px;
  90. margin-bottom: 15px;
  91. }
  92. ul {
  93. padding-left: 10px;
  94. }
  95. li {
  96. list-style-position: inside;
  97. }
  98. .number-of-collaborators {
  99. margin-bottom: 5px;
  100. }
  101. }
  102. .price-summary {
  103. padding-bottom: 7.5px;
  104. .price-summary-line {
  105. display: flex;
  106. justify-content: space-between;
  107. }
  108. .price-summary-total-line {
  109. margin-top: 5px;
  110. font-size: 16px;
  111. }
  112. hr {
  113. margin-top: 20px;
  114. margin-bottom: 20px;
  115. }
  116. }
  117. .price-details-spacing {
  118. height: @line-height-computed / 2;
  119. }
  120. .price-cancel-anytime {
  121. font-size: 12px;
  122. }
  123. .trial-coupon-summary {
  124. font-size: 12px;
  125. padding-top: 7.5px;
  126. padding-bottom: 7.5px;
  127. }
  128. .toggle-address-second-line {
  129. margin-bottom: @line-height-computed / 2;
  130. }
  131. .payment-method-toggle {
  132. border-bottom: 1px solid @hr-border;
  133. }
  134. .change-currency {
  135. margin-top: 5px;
  136. }
  137. .change-currency-toggle {
  138. padding-left: 0px;
  139. font-size: 12px;
  140. text-decoration: underline;
  141. color: @text-small-color;
  142. &:hover,
  143. &:focus {
  144. color: @text-small-color;
  145. }
  146. }
  147. .change-currency-dropdown-selected-icon {
  148. position: absolute;
  149. left: 10px;
  150. }
  151. .recurly-hosted-field-input when (@is-new-css = true) {
  152. &:extend(.form-control);
  153. }
  154. .back-btn {
  155. padding: 0 10px 2px 12px;
  156. border-radius: 50%;
  157. border: none;
  158. color: @gray-dark;
  159. &:hover {
  160. background-color: @neutral-20;
  161. color: @gray-dark;
  162. }
  163. &:active {
  164. background-color: @gray-lighter;
  165. }
  166. }
  167. a.row-link {
  168. line-height: 24px;
  169. color: @neutral-70;
  170. display: flex;
  171. flex-direction: row;
  172. text-decoration: none;
  173. padding: 6px 0;
  174. &:active,
  175. &:focus,
  176. &:hover {
  177. text-decoration: none;
  178. outline: none;
  179. background-color: @gray-lightest;
  180. }
  181. .icon {
  182. display: flex;
  183. flex: 1 1 5%;
  184. padding: 0 16px;
  185. margin-top: 16px;
  186. > span {
  187. font-size: 16px;
  188. }
  189. &.arrow {
  190. margin-top: 12px;
  191. > span {
  192. font-size: 24px;
  193. }
  194. }
  195. }
  196. .text {
  197. flex: 1 1 90%;
  198. display: flex;
  199. flex-direction: column;
  200. .heading {
  201. font-weight: @btn-font-weight;
  202. }
  203. .subtext {
  204. font-weight: 400;
  205. }
  206. }
  207. }