Skip to content

Commit

Permalink
Merge pull request #135 from PROCEED-Labs/delete-copy-process-modal
Browse files Browse the repository at this point in the history
LocalStorage, Copy&Paste, Modals, Scrollbar, Highlight
  • Loading branch information
FelipeTrost authored Nov 8, 2023
2 parents 13e23f7 + 93a7764 commit d757317
Show file tree
Hide file tree
Showing 18 changed files with 1,735 additions and 695 deletions.
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

0 comments on commit d757317

Please sign in to comment.