Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
UI improvements
Capability to configure header


Signed-off-by: Dhananjaya Rajasinghe <[email protected]>
  • Loading branch information
DhananjayaR committed Jan 19, 2023
1 parent 6d4db21 commit 70eadb1
Show file tree
Hide file tree
Showing 19 changed files with 1,888 additions and 726 deletions.
997 changes: 654 additions & 343 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fixyl",
"version": "1.0.7",
"version": "1.0.8",
"private": true,
"dependencies": {
"@ag-grid-community/all-modules": "^26.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@

.form-header {
padding: 15px;
padding-bottom: 0;
padding-bottom: 5px;

.title {
font-size: 14px;
font-weight: 500;
color: var(--accent-2-hover);
}
}

Expand Down
231 changes: 122 additions & 109 deletions src/main-layout/SessionWindow/SessionTab/SessionManagement/FixForm.tsx

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
.fix-header-form-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
color: var(--text-color);
background-color: var(--shade-375);
border-top: 1px solid var(--shade-300);

.ant-form {
height: 100%;
overflow: AUTO;
display: flex;
flex-direction: column;
}

.form-header {
padding: 15px;
padding-bottom: 5px;

.title {
font-size: 14px;
font-weight: 500;
color: var(--accent-2-hover);
}
}

.form-body {
display: flex;
flex-direction: column;
overflow: auto;
padding: 0 15px 15px 15px;
flex-grow: 1;
padding-top: 15px;

.fix-field-wrapper {
.field-number {
margin-left: 5px;
font-size: 8px;
color: var(--shade-250);
}
}

.fix-component {
display: flex;
flex-direction: column;

&-title {
font-weight: 500;
margin-bottom: 15px;
color: var(--text-color-accent-1);
}

&-fields {
}
}

.fix-group {
display: flex;
flex-direction: column;

&-title {
font-weight: 500;
margin-bottom: 15px;
color: var(--text-color-accent-1);
display: flex;
flex-direction: row;
}

.fix-group-insert {
cursor: pointer;
margin-left: auto;
}

.repitition-block {
border-bottom: 1px solid var(--separator-color);
border-bottom-style: dashed;
margin-top: 5px;
}

&-fields {
.repitition-block {
display: flex;

&-content {
display: flex;
flex-direction: column;
flex-grow: 1;
}

.dynamic-delete-button {
color: var(--text-color-accent-1);
margin: 5px 0 5px 5px;
}
}
}
}
}

.form-footer {
justify-content: space-between;
padding: 10px;
background: var(--shade-375);
display: flex;

.save-btn {
margin-left: auto;
}
}
}
Loading

0 comments on commit 70eadb1

Please sign in to comment.