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:
parent
2b5eb98296
commit
d6375f838b
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue