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 {
|
.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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
.Menu {
|
.Menu {
|
||||||
.LabelOption.menu-option {
|
.LabelOption.menu-option {
|
||||||
cursor: auto;
|
cursor: auto;
|
||||||
|
pointer-events: none;
|
||||||
&:hover {
|
|
||||||
background: inherit;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
.MenuWrapper {
|
.MenuWrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue