Merge branch 'master' of https://github.com/brkcvn/akaunting into new-plans
This commit is contained in:
5
resources/assets/js/plugins/form.js
vendored
5
resources/assets/js/plugins/form.js
vendored
@ -478,9 +478,12 @@ export default class Form {
|
||||
if (response.data.redirect) {
|
||||
this.loading = true;
|
||||
|
||||
// Empty hash because /sale/customer/1#transaction redirect to sale/invoice/create.
|
||||
window.location.hash = '';
|
||||
|
||||
window.location.href = response.data.redirect;
|
||||
|
||||
if (window.location.hash !== undefined) {
|
||||
if (typeof window.location.hash != "undefined" && window.location.hash.length) {
|
||||
location.reload();
|
||||
}
|
||||
}
|
||||
|
25
resources/assets/sass/app.css
vendored
25
resources/assets/sass/app.css
vendored
@ -459,6 +459,17 @@ html[dir='rtl'] .el-scrollbar__wrap {
|
||||
.el-range-editor.el-input__inner {
|
||||
width: 100%;
|
||||
}
|
||||
/* apex-chart cash-flow */
|
||||
.apex-chart-cash-flow .apexcharts-legend {
|
||||
width: 24rem !important;
|
||||
justify-content: space-around !important;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.apex-chart-cash-flow .apexcharts-toolbar {
|
||||
top: 45px !important;
|
||||
}
|
||||
/* apex-chart cash-flow */
|
||||
}
|
||||
/* element-ui */
|
||||
|
||||
@ -541,13 +552,25 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
.small-table-width {
|
||||
width: 450px;
|
||||
width: 550px;
|
||||
}
|
||||
|
||||
.small-col {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.description-col {
|
||||
width: 180px !important
|
||||
}
|
||||
|
||||
.amount-col {
|
||||
width: 70px !important;
|
||||
}
|
||||
|
||||
.name-col {
|
||||
width: 6rem !important
|
||||
}
|
||||
|
||||
.information-content {
|
||||
transform: unset !important;
|
||||
margin-top: 70px !important;
|
||||
|
Reference in New Issue
Block a user