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 { .SidebarAddBoardMenu {
.menu-entry { .menu-entry {
display: flex; display: flex;
cursor: pointer;
flex-direction: row; flex-direction: row;
padding: 0 16px 0 8px; padding: 0 16px 0 8px;
height: 36px; height: 36px;

View file

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

View file

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

View file

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

View file

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