1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00

Multiple UI Fixes (Modals and person property label (#4503)

* Updating card dialog modal to not go 100% height

* Updating modals

* Updating person property column header
This commit is contained in:
Asaad Mahmood 2023-01-25 15:13:53 +05:00 committed by GitHub
parent bf1c1a82b1
commit d7fd0980dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,10 @@
top: 0;
height: 100%;
@media (min-width: 975px) {
height: calc(100% - 144px);
}
>.CardDetail {
display: flex;
flex-direction: column;

View File

@ -102,7 +102,7 @@
.toolbar {
display: flex;
flex-direction: row;
padding: 24px 0;
padding: 24px 32px;
justify-content: space-between;
align-items: flex-start;
}
@ -112,7 +112,7 @@
gap: 8px;
align-items: center;
height: 28px;
margin-right: 16px;
margin-right: -14px;
}
}

View File

@ -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;
}
}