File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
src/frontend/apps/impress/src/features/docs/doc-tree/components Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ import { DocIcon } from '@/features/docs/doc-management/components/DocIcon';
1919import { useLeftPanelStore } from '@/features/left-panel' ;
2020import { useResponsiveStore } from '@/stores' ;
2121
22+ import { useKeyboardActivation } from '../hooks/useKeyboardActivation' ;
2223import SubPageIcon from './../assets/sub-page-logo.svg' ;
2324import { DocTreeItemActions } from './DocTreeItemActions' ;
24- import { useKeyboardActivation } from '../hooks/useKeyboardActivation' ;
2525
2626const ItemTextCss = css `
2727 overflow : hidden;
@@ -127,6 +127,11 @@ export const DocSubPageItem = (props: TreeViewNodeProps<Doc>) => {
127127 background : var (--c--theme--colors--greyscale-100 );
128128 }
129129 }
130+ .c__tree-view--node .isFocused {
131+ outline : none !important ;
132+ box-shadow : 0 0 0 2px var (--c--theme--colors--primary-500 ) !important ;
133+ border-radius : 4px ;
134+ }
130135 & : hover {
131136 background-color : var (--c--theme--colors--greyscale-100 );
132137 border-radius : 4px ;
Original file line number Diff line number Diff line change @@ -181,6 +181,15 @@ export const DocTree = ({ currentDoc }: DocTreeProps) => {
181181 role = "tree"
182182 aria-label = { t ( 'Document tree' ) }
183183 $css = { css `
184+ /* Remove outline from TreeViewItem wrapper elements */
185+ .c__tree-view--row {
186+ outline : none !important ;
187+
188+ & : focus-visible {
189+ outline : none !important ;
190+ }
191+ }
192+
184193 .c__tree-view--container {
185194 z-index : 1 ;
186195 margin-top : -10px ;
@@ -200,7 +209,7 @@ export const DocTree = ({ currentDoc }: DocTreeProps) => {
200209 < Box
201210 data-testid = "doc-tree-root-item"
202211 role = "treeitem"
203- aria-label = { `${ t ( 'Root document' ) } : ${ treeContext . root ?. title || t ( 'Untitled document' ) } ` }
212+ aria-label = { `${ t ( 'Root document {{title}}' , { title : treeContext . root ?. title || t ( 'Untitled document' ) } ) } ` }
204213 aria-selected = { rootIsSelected }
205214 tabIndex = { 0 }
206215 onFocus = { handleRootFocus }
@@ -217,6 +226,12 @@ export const DocTree = ({ currentDoc }: DocTreeProps) => {
217226 background-color : var (--c--theme--colors--greyscale-100 );
218227 }
219228
229+ & : focus-visible {
230+ outline : none !important ;
231+ box-shadow : 0 0 0 2px var (--c--theme--colors--primary-500 ) !important ;
232+ border-radius : 4px ;
233+ }
234+
220235 .doc-tree-root-item-actions {
221236 display : 'flex' ;
222237 opacity : ${ rootActionsOpen ? '1' : '0' } ;
You can’t perform that action at this time.
0 commit comments