mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 20:21:10 -04:00
fix mail-config and modal icon size
This commit is contained in:
18561
public/assets/css/laraspace.css
vendored
Normal file
18561
public/assets/css/laraspace.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/assets/css/laraspace.css.map
Normal file
1
public/assets/css/laraspace.css.map
Normal file
File diff suppressed because one or more lines are too long
180945
public/assets/js/app.js
Normal file
180945
public/assets/js/app.js
Normal file
File diff suppressed because one or more lines are too long
1
public/assets/js/app.js.map
Normal file
1
public/assets/js/app.js.map
Normal file
File diff suppressed because one or more lines are too long
@ -769,9 +769,9 @@ export default {
|
|||||||
payment_greater_than_due_amount: 'Entered Payment is more than due amount of this invoice.',
|
payment_greater_than_due_amount: 'Entered Payment is more than due amount of this invoice.',
|
||||||
quantity_maxlength: 'Quantity should not be greater than 10 digits.',
|
quantity_maxlength: 'Quantity should not be greater than 10 digits.',
|
||||||
price_maxlength: 'Price should not be greater than 10 digits.',
|
price_maxlength: 'Price should not be greater than 10 digits.',
|
||||||
price_minvalue: 'Price should be greater than 0 digits',
|
price_minvalue: 'Price should be greater than 0.',
|
||||||
amount_maxlength: 'Amount should not be greater than 10 digits.',
|
amount_maxlength: 'Amount should not be greater than 10 digits.',
|
||||||
amount_minvalue: 'Amount should be greater than 0 digits',
|
amount_minvalue: 'Amount should be greater than 0.',
|
||||||
description_maxlength: 'Description should not be greater than 255 characters.',
|
description_maxlength: 'Description should not be greater than 255 characters.',
|
||||||
maximum_options_error: 'Maximum of {max} options selected. First remove a selected option to select another.',
|
maximum_options_error: 'Maximum of {max} options selected. First remove a selected option to select another.',
|
||||||
notes_maxlength: 'Notes should not be greater than 255 characters.',
|
notes_maxlength: 'Notes should not be greater than 255 characters.',
|
||||||
|
|||||||
@ -219,7 +219,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr> <!-- second row complete -->
|
<hr> <!-- second row complete -->
|
||||||
<div class="row same-address-checkbox-container">
|
<div class="same-address-checkbox-container">
|
||||||
<div class="p-1">
|
<div class="p-1">
|
||||||
<base-button ref="sameAddress" icon="copy" color="theme" class="btn-sm" @click="copyAddress(true)">
|
<base-button ref="sameAddress" icon="copy" color="theme" class="btn-sm" @click="copyAddress(true)">
|
||||||
{{ $t('customers.copy_billing_address') }}
|
{{ $t('customers.copy_billing_address') }}
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<form action="" @submit.prevent="saveEmailConfig()">
|
<form action="" @submit.prevent="saveEmailConfig()">
|
||||||
<div class="row my-2 mt-5">
|
<div class="row">
|
||||||
<div class="col-md-6 my-2">
|
<div class="col-md-6 my-2">
|
||||||
<label class="form-label">{{ $t('settings.mail.driver') }}</label>
|
<label class="form-label">{{ $t('settings.mail.driver') }}</label>
|
||||||
<span class="text-danger"> *</span>
|
<span class="text-danger"> *</span>
|
||||||
@ -116,12 +116,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<base-button
|
<base-button
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
class="pull-right mt-5"
|
class="pull-right mt-4"
|
||||||
icon="save"
|
icon="save"
|
||||||
color="theme"
|
color="theme"
|
||||||
type="submit"
|
type="submit"
|
||||||
>
|
>
|
||||||
{{ $t('wizard.save_cont') }}
|
{{ $t('general.save') }}
|
||||||
</base-button>
|
</base-button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
2
resources/assets/sass/base.scss
vendored
2
resources/assets/sass/base.scss
vendored
@ -113,5 +113,5 @@ code, .code {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.swal-icon--custom {
|
.swal-icon--custom {
|
||||||
height: 50px !important;
|
height: 70px !important;
|
||||||
}
|
}
|
||||||
|
|||||||
3
resources/assets/sass/pages/customers.scss
vendored
3
resources/assets/sass/pages/customers.scss
vendored
@ -27,8 +27,6 @@
|
|||||||
|
|
||||||
.same-address-checkbox-container {
|
.same-address-checkbox-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
|
||||||
padding-left: 12px;
|
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
@ -97,7 +95,6 @@
|
|||||||
.same-address-checkbox-container {
|
.same-address-checkbox-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
padding-left: 15px;
|
|
||||||
margin-bottom: 0rem;
|
margin-bottom: 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user