Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LocalStorage, Copy&Paste, Modals, Scrollbar, Highlight #135

Merged
merged 24 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
17edc6d
Added delete, copy (wip) ctrl + c & ctrl +v (wip) Co-authored-by: win…
MaxiLein Oct 5, 2023
b7c8acd
trivial
MaxiLein Oct 12, 2023
128c6f6
Merge branch 'main' into process-list-buttons
MaxiLein Oct 12, 2023
1c54999
Made Icon List responsive (grid) Co-authored-by: winniel24 <winniel24…
MaxiLein Oct 12, 2023
2565e01
Merged Main into user-preferences-localstorage
MaxiLein Oct 12, 2023
0bab339
Replaced User-Prefereces-Cookie with localStorage Co-authored-by: win…
MaxiLein Oct 12, 2023
5436d9d
Fixed localstorage (could be refined), fixed delete on row Co-author…
MaxiLein Oct 13, 2023
9553fa7
adjusted height, so that there is no scrolling anymore
winniel24 Oct 18, 2023
69e1d49
Merge branch 'main' into user-preferences-localstorage
MaxiLein Oct 19, 2023
d04d5b5
Changed the user prefs store wrapper
MaxiLein Oct 19, 2023
cce89bb
Removed unused import
MaxiLein Oct 19, 2023
82ed21f
Fixed layout for process list and icon list Co-authored-by: winniel24…
MaxiLein Oct 19, 2023
2abade0
Copy Paste of processes Co-authored-by: winniel24 <[email protected]
MaxiLein Oct 19, 2023
967d21c
Delete (single / multiple) Modal \nCo-authored-by: winniel24 <winniel…
MaxiLein Oct 20, 2023
a64cc0a
Added row delete warning modal Co-authored-by: winniel24 <winniel24@u…
MaxiLein Oct 24, 2023
f98109d
Merge branch 'main' into delete-copy-process-modal
MaxiLein Oct 24, 2023
3767858
Copy Processes modal with retry Co-authored-by: winniel24 <winniel24@…
MaxiLein Oct 25, 2023
ead9b5b
added ability check; delete text parsedAs text
MaxiLein Oct 25, 2023
ec95a51
added a scrollbar component
MaxiLein Oct 25, 2023
852d5fd
trivial
MaxiLein Oct 25, 2023
aa70601
removed config
MaxiLein Oct 25, 2023
c8f12fc
Address pull request comments
MaxiLein Oct 31, 2023
800d372
fix scrollbar overflow
MaxiLein Nov 1, 2023
93a7764
Merge branch 'main' into delete-copy-process-modal
MaxiLein Nov 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
/* Need this for the absolute editor page to work in non-parallel route. */
//min-height: 70vh;
max-width: calc(100vw - 200px);
height: calc(100vh - 150px);

&.collapsed {
margin-left: 25px;
Expand Down
23 changes: 20 additions & 3 deletions src/management-system-v2/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
}
}

/* TODO: Move to module */
.ant-menu-light.ant-menu-root.ant-menu-inline,
.ant-menu-light > .ant-menu.ant-menu-root.ant-menu-inline,
.ant-menu-light.ant-menu-root.ant-menu-vertical,
Expand Down Expand Up @@ -110,8 +109,8 @@
}

.card-selected {
background-color: #ebf8ff;
border: 1px solid #1976d2;
background-color: #ebf8ff !important;
border: 1px solid #1976d2 !important;
}

.no-select {
Expand All @@ -124,3 +123,21 @@
.fit-height {
height: calc(100vh - 64px - 70px);
}

/* Adapt BPMN.js toolbar styles */
.djs-palette {
background-color: white !important;
border: solid 1px #d9d9d9 !important;
border-radius: 8px !important;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02) !important;
}

.group .entry {
border-bottom: solid 1px #d9d9d9;
}
.group .entry :last-child {
border-bottom: none;
}
.group .separator {
display: none;
}
3 changes: 2 additions & 1 deletion src/management-system-v2/components/content.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.Main {
min-height: 100vh !important;
min-height: calc(100vh - 70px) !important;

.Header {
display: flex;
Expand All @@ -23,6 +23,7 @@
padding: 40px 20px;
max-width: 100%;
background-color: white;
height: calc(100vh - 150px);

&.compact {
padding: 0;
Expand Down
4 changes: 2 additions & 2 deletions src/management-system-v2/components/layout.module.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.Sider {
overflow: auto;
height: 100vh;
height: calc(100vh - 70px);
//position: fixed !important;
left: 0;
top: 0;
Expand Down Expand Up @@ -42,7 +42,7 @@
flex: auto;
position: relative;
/* Need this for the absolute editor page to work in non-parallel route. */
min-height: 100vh;
// min-height: 100vh;
}

.Footer {
Expand Down
13 changes: 13 additions & 0 deletions src/management-system-v2/components/process-copy.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.Checkbox {
font-size: 12px;
// width: 55%;
}

.ClippedProcessTitle {
display: inline-block;
vertical-align: bottom;
width: 470px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
Loading