mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
111 lines
1.6 KiB
SCSS
111 lines
1.6 KiB
SCSS
div.stripe-errors {
|
|
border: 1px solid #c33;
|
|
border-radius: 5px;
|
|
color: #600;
|
|
background-color: #fdd;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.donations-page-description {
|
|
max-width: 700px;
|
|
font-size: 1.1em;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.donations-page-payment {
|
|
padding: 30px 0;
|
|
|
|
#payment-form {
|
|
.control-label {
|
|
margin: 0 6.5px;
|
|
}
|
|
|
|
.select-kit ul {
|
|
margin: 0;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
margin: 0;
|
|
}
|
|
|
|
.error, .stripe-error {
|
|
margin-top: 5px;
|
|
color: $danger;
|
|
}
|
|
}
|
|
}
|
|
|
|
.transaction-fee-description {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.transaction-fee-description-modal {
|
|
display: block;
|
|
position: absolute;
|
|
top: -30px;
|
|
left: 20px;
|
|
background-color: $secondary;
|
|
border: 1px solid $primary-low;
|
|
padding: 10px;
|
|
box-shadow: 0 2px 2px rgba(0,0,0,0.4);
|
|
width: 400px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.body-page .donations-page-donations {
|
|
margin-bottom: 20px;
|
|
|
|
.donation-list {
|
|
.subscription-list, .charge-list {
|
|
margin-bottom: 10px;
|
|
|
|
> ul {
|
|
margin: 10px 0;
|
|
list-style: none;
|
|
|
|
.spinner {
|
|
height: 5px;
|
|
width: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.underline {
|
|
border-bottom: 1px solid $primary-medium;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.donation-row {
|
|
span {
|
|
line-height: 25px;
|
|
}
|
|
|
|
&.canceled {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
&.updating {
|
|
color: $primary-low;
|
|
}
|
|
|
|
.new-flag {
|
|
color: $tertiary;
|
|
margin-left: 5px;
|
|
|
|
.fa {
|
|
line-height: 16px;
|
|
font-size: 8px;
|
|
}
|
|
|
|
> * {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|