This commit is contained in:
Rimian Perkins 2019-09-12 19:04:10 +10:00
parent 22af03a42e
commit c6555ccc63
3 changed files with 7 additions and 1 deletions

View File

@ -41,6 +41,7 @@ Many thanks to Chris Beach and Angus McLeod who helped on the previous version o
## TODOs
* Add a description/message
* Confirm dialog CSS isn't the best.
* Check against other themes (works ok with light and dark)
* Validate the model properly. Not in the stripe component
* Show the transaction on the thank you page.

View File

@ -3,7 +3,7 @@
{{#d-modal closeModal=(action "closeModal") modalStyle="inline-modal" title=(i18n "discourse_patrons.payment.payment_confirmation")}}
{{#d-modal-body}}
<div class="discourse-patrons-section-columns">
<div class="section-column">
<div class="section-column discourse-patrons-confirmation-billing">
<table class="discourse-patrons-confirmation">
<tr>
<td>{{i18n 'discourse_patrons.billing.name'}}</td>

View File

@ -76,11 +76,16 @@
margin: 20px 0;
}
.discourse-patrons-confirmation-billing {
margin-right: 40px;
}
.discourse-patrons-confirmation {
width: 100%;
td {
padding: 10px;
white-space: nowrap;
}
}