Skip to content

Commit

Permalink
Fix context submeny arrow key color
Browse files Browse the repository at this point in the history
- Context sub-menu arrow key color was transparent. Replaced with appropriate color variable

Signed-off-by: Darshan-upadhyay1110 <[email protected]>
Change-Id: I57bff4640156fa52f92ce1678caa364218349b9c
  • Loading branch information
Darshan-upadhyay1110 authored and pedropintosilva committed Sep 6, 2024
1 parent f93a57d commit 18d281d
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions browser/css/cool.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,23 +507,19 @@ nav.spreadsheet-color-indicator ~ #sidebar-dock-wrapper {
.context-menu-hover > span > a {
color: var(--color-text-darker);
}

.context-menu-submenu.context-menu-hover:after {
border-color: transparent transparent transparent var(--color-background-lighter);
.context-menu-submenu:after {
border-color: transparent transparent transparent var(--color-text-darker) !important;
}

/* With RTL write direction the arrow of the context menu's submenu should be flipped */

[dir='rtl'] .context-menu-submenu:after {
right: unset;
left: .5em;
border-color: transparent #2f2f2f transparent transparent;
border-color: transparent var(--color-text-darker) transparent transparent;
border-width: .25em .25em .25em 0;
}

[dir='rtl'] .context-menu-submenu.context-menu-hover:after {
border-color: transparent var(--color-background-lighter) transparent transparent;
}

#mobile-wizard {
display: none;
Expand Down

0 comments on commit 18d281d

Please sign in to comment.