Menus (dropdowns) with separator: Fix hidden keyboard focus

When opening a menu as in Calc > Home > Conditional menu and then
press tab: we can successfully cycle through the elements but for some
elements user cannot see the focus.
 - The focus was being set but under the separator. So, better to
 assure that the immediate separator neighbor is set to transparent.

Signed-off-by: Pedro Pinto Silva <pedro.silva@collabora.com>
Change-Id: Icb87b3173144356efad101f5e2b9b77e0e8dcd06
This commit is contained in:
Pedro Pinto Silva 2023-10-27 13:30:33 +02:00 committed by pedropintosilva
parent 2b5eb98296
commit d6375f838b

View file

@ -218,6 +218,9 @@ td.jsdialog > [id^='table-box']:not(.sidebar) {
/* Separator */
.jsdialog:focus-visible + .jsdialog.ui-separator.vertical {
background-color: transparent;
}
.jsdialog.ui-separator.vertical {
height: 100%;
padding-right: 6px;