Skip to content

Commit

Permalink
Multiple UI Fixes (Modals and person property label (mattermost-commu…
Browse files Browse the repository at this point in the history
…nity#4503)

* Updating card dialog modal to not go 100% height

* Updating modals

* Updating person property column header
  • Loading branch information
asaadmahmood authored Jan 25, 2023
1 parent bf1c1a8 commit d7fd098
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions webapp/src/components/cardDialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
top: 0;
height: 100%;

@media (min-width: 975px) {
height: calc(100% - 144px);
}

>.CardDetail {
display: flex;
flex-direction: column;
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/components/dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
.toolbar {
display: flex;
flex-direction: row;
padding: 24px 0;
padding: 24px 32px;
justify-content: space-between;
align-items: flex-start;
}
Expand All @@ -112,7 +112,7 @@
gap: 8px;
align-items: center;
height: 28px;
margin-right: 16px;
margin-right: -14px;
}
}

Expand Down
6 changes: 6 additions & 0 deletions webapp/src/components/kanban/kanban.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@
max-width: 165px;
margin: 0 8px 0 0;

&.empty {
color: rgba(var(--center-channel-color-rgb), 1);
font-weight: 600;
}

.Editable {
color: rgba(var(--center-channel-color-rgb), 1);
background: transparent;
}
}
Expand Down

0 comments on commit d7fd098

Please sign in to comment.