feat(invoice): add branch & warehouse.

This commit is contained in:
elforjani13
2022-02-07 13:16:46 +02:00
committed by a.bouhuolia
parent 2a61a3de47
commit 03782efe88
266 changed files with 9061 additions and 88 deletions

View File

@@ -96,13 +96,13 @@ $dashboard-views-bar-height: 44px;
}
}
&-subscription-msg{
&-subscription-msg {
display: flex;
flex-direction: row;
padding-right: 6px;
font-size: 12px;
span{
span {
margin: auto;
}
}
@@ -371,13 +371,13 @@ $dashboard-views-bar-height: 44px;
}
}
&__centered-empty-status{
&__centered-empty-status {
display: flex;
flex: 1 0 0;
flex-direction: column;
margin: auto;
.datatable-empty-status{
.datatable-empty-status {
margin: auto;
padding-bottom: 40px;
}
@@ -537,6 +537,12 @@ $dashboard-views-bar-height: 44px;
.bp3-tab[aria-selected='true'] {
box-shadow: inset 0 -2px 0 #0052cc;
}
.bp3-button {
&:hover {
background: rgba(167, 182, 194, 0.12);
color: #32304a;
}
}
}
.navbar--omnibar {
@@ -565,3 +571,25 @@ $dashboard-views-bar-height: 44px;
}
}
}
.navbar--dashboard-topbar {
box-shadow: 0 0 0;
border-bottom: 1px solid #d2dce2;
/* height: 44px; */
height: 37px;
padding: 0 20px;
.bp3-navbar-group {
height: 37px;
}
.bp3-navbar-divider {
border-left-color: #d2dce2;
}
.bp3-button {
&:hover {
background: rgba(167, 182, 194, 0.12);
color: #32304a;
}
}
}

View File

@@ -31,6 +31,28 @@ body.page-invoice-edit {
max-width: 450px;
}
}
.row {
display: flex;
flex-wrap: nowrap;
.col {
max-width: 470px;
&--terms,
&--due-date {
.bp3-form-group {
margin: 0px 15px 15px;
.bp3-label {
min-width: 70px;
}
}
}
&--due-date {
.bp3-input-group .bp3-input {
border: 1px dashed #ced4da;
}
}
}
}
.col--invoice-date {
max-width: 435px;
}