We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b0f84 commit 18aeb52Copy full SHA for 18aeb52
packages/main/src/components/AnalyticalTable/AnalyticalTable.module.css
@@ -210,12 +210,18 @@
210
}
211
212
&:focus {
213
- outline-offset: calc(-1 * var(--sapContent_FocusWidth));
214
- outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);
215
-
216
- &[data-empty-row-cell] {
217
- outline: none;
218
- }
+ outline: none;
+ }
+ &:not([data-empty-row-cell]):focus::after {
+ content: '';
+ pointer-events: none;
+ inset-inline: 1px;
219
+ inset-block: 1px;
220
+ border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);
221
+ position: absolute;
222
223
+ &[aria-selected='true']:not([data-empty-row-cell]):focus::after {
224
+ inset-block-end: 2px;
225
226
227
0 commit comments