1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00

Focalboard UI Fixes (#1194)

* 1173 - Show description fix

* 1191 - Octo-block Hover fix

* 1189 - Updating width of kanban header

* 1172 - Updating menu in the header

* Updating css

* Updating menu css

* Updating menu css
This commit is contained in:
Asaad Mahmood 2021-09-14 20:58:37 +05:00 committed by GitHub
parent b5053d982a
commit 1836f9527f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 7 deletions

View File

@ -9,9 +9,6 @@
z-index: 1000;
.Menu {
position: unset;
min-width: unset;
a, button {
color: inherit;

View File

@ -5,7 +5,7 @@
.octo-board-header {
display: flex;
flex-direction: row;
width: fit-content;
min-height: 30px;
padding: 16px 0;
color: #909090;

View File

@ -9,7 +9,7 @@
> .add-buttons {
flex-direction: row;
min-height: 28px;
min-height: 36px;
color: rgba(var(--center-channel-color-rgb), 0.4);
width: 100%;
align-items: flex-start;

View File

@ -203,9 +203,13 @@ html {
display: flex;
flex-direction: row;
align-items: flex-start;
width: 100%;
&:hover {
position: relative;
z-index: 1;
}
> * {
flex: 1 1 auto;
}

View File

@ -1,9 +1,14 @@
.status-dropdown-menu {
> .Menu {
position: inherit;
}
}
.Menu {
display: flex;
flex-direction: column;
position: absolute;
z-index: 15;
min-width: 180px;
background-color: rgb(var(--center-channel-bg-rgb));
color: rgb(var(--center-channel-color-rgb));
border-radius: var(--default-rad);