Fixed menu label hover (#1499)

* Fixed menu label hover

* removed cursor in menu wrapper, causing pointer cursor on entire option menu

* Fixed sidebar menu buttons having no cursor

* logo title cursor

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
Jenya 2021-11-03 14:14:32 +02:00 committed by GitHub
parent 9a3406d0d6
commit f6c867b4af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,7 @@
.SidebarAddBoardMenu {
.menu-entry {
display: flex;
cursor: pointer;
flex-direction: row;
padding: 0 16px 0 8px;
height: 36px;

View File

@ -1,6 +1,7 @@
.SidebarSettingsMenu {
.menu-entry {
display: flex;
cursor: pointer;
flex-direction: row;
padding: 0 16px 0 8px;
height: 36px;

View File

@ -10,6 +10,7 @@
align-items: center;
font-size: 16px;
margin-right: 5px;
cursor: pointer;
.FocalboardLogoIcon {
fill: rgba(var(--sidebar-text-rgb), 1);

View File

@ -1,9 +1,6 @@
.Menu {
.LabelOption.menu-option {
cursor: auto;
&:hover {
background: inherit;
}
pointer-events: none;
}
}

View File

@ -1,7 +1,6 @@
.MenuWrapper {
position: relative;
cursor: pointer;
&.disabled {
cursor: default;
}