File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
components/hds/advanced-table Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export default class HdsAdvancedTableThResizeHandle extends Component<HdsAdvance
95
95
return ;
96
96
}
97
97
98
- return `${ tableHeight - TABLE_BORDER_WIDTH * 4 } px` ;
98
+ return `${ tableHeight - TABLE_BORDER_WIDTH * 2 } px` ;
99
99
}
100
100
101
101
get classNames ( ) : string {
Original file line number Diff line number Diff line change 8
8
//
9
9
//
10
10
11
+ @use " ../mixins/button" as * ;
11
12
@use " ../mixins/focus-ring" as * ;
12
13
13
14
$hds-advanced-table-border-radius : var (--token-border-radius-medium );
@@ -275,14 +276,23 @@ $hds-advanced-table-cell-padding-tall: 22px 16px 21px 16px; // the 1px differenc
275
276
background-color : var (--token-color-surface-interactive );
276
277
border-color : var (--token-color-border-strong );
277
278
box-shadow : var (--token-elevation-low-box-shadow );
278
- cursor : pointer ;
279
279
}
280
280
281
- & :focus ::before {
281
+ & :focus ,
282
+ & .mock-focus {
282
283
border-color : transparent ;
284
+
285
+ & ::before {
286
+ top : 0 ;
287
+ right : 0 ;
288
+ bottom : 0 ;
289
+ left : 0 ;
290
+ border : none ;
291
+ border-radius : 3px ;
292
+ }
283
293
}
284
294
285
- @include hds-focus-ring-basic ( );
295
+ @include hds-focus-ring-with-pseudo-element ( $radius : inherit );
286
296
}
287
297
288
298
.hds-advanced-table__th-button {
You can’t perform that action at this time.
0 commit comments