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:
parent
9a3406d0d6
commit
f6c867b4af
5 changed files with 5 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
|||
.SidebarAddBoardMenu {
|
||||
.menu-entry {
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
flex-direction: row;
|
||||
padding: 0 16px 0 8px;
|
||||
height: 36px;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
.SidebarSettingsMenu {
|
||||
.menu-entry {
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
flex-direction: row;
|
||||
padding: 0 16px 0 8px;
|
||||
height: 36px;
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
align-items: center;
|
||||
font-size: 16px;
|
||||
margin-right: 5px;
|
||||
cursor: pointer;
|
||||
|
||||
.FocalboardLogoIcon {
|
||||
fill: rgba(var(--sidebar-text-rgb), 1);
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
.Menu {
|
||||
.LabelOption.menu-option {
|
||||
cursor: auto;
|
||||
|
||||
&:hover {
|
||||
background: inherit;
|
||||
}
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
.MenuWrapper {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
|
||||
&.disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue