-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI improvements Capability to configure header Signed-off-by: Dhananjaya Rajasinghe <[email protected]>
- Loading branch information
1 parent
6d4db21
commit 70eadb1
Showing
19 changed files
with
1,888 additions
and
726 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
231 changes: 122 additions & 109 deletions
231
src/main-layout/SessionWindow/SessionTab/SessionManagement/FixForm.tsx
Large diffs are not rendered by default.
Oops, something went wrong.
111 changes: 111 additions & 0 deletions
111
src/main-layout/SessionWindow/SessionTab/SessionManagement/FixHeaderForm.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
} |
Oops, something went wrong.