Skip to content

Commit

Permalink
Fixes button focus changes size
Browse files Browse the repository at this point in the history
  • Loading branch information
origami-z committed Nov 15, 2024
1 parent 6556df9 commit 2c75efe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/ag-grid-theme/css/parts/ag-buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ div[class*="ag-theme-salt"] .ag-keyboard-focus .ag-header-cell:focus:after {
div[class*="ag-theme-salt"] button[class^="ag-"]:focus,
div[class*="ag-theme-salt"] input[class^="ag-"][type="button"]:focus {
box-shadow: none;
border: var(--salt-focused-outlineWidth) var(--salt-focused-outlineStyle) var(--salt-focused-outlineColor);
outline-style: var(--salt-focused-outlineStyle);
outline-width: var(--salt-focused-outlineWidth);
outline-color: var(--salt-focused-outlineColor);
outline-offset: var(--salt-focused-outlineOffset);
}

div[class*="ag-theme-salt"] .ag-select .ag-picker-field-wrapper {
Expand Down

0 comments on commit 2c75efe

Please sign in to comment.