Skip to content

Commit

Permalink
browser: accessibility: fix min-content, max-content grid
Browse files Browse the repository at this point in the history
Change-Id: I8a4615ef0c2abdd21d57737708d64a4c79cc134f
Signed-off-by: Henry Castro <[email protected]>
  • Loading branch information
hcvcastro committed Sep 3, 2024
1 parent 4481f09 commit 3c65582
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion browser/css/jsdialogs.css
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ td.jsdialog > [id^='table-box']:not(.sidebar) {
}

.ui-tabs-content.jsdialog > .ui-content.hidden {
display: inherit !important;
display: none !important;
visibility: hidden;
}

Expand Down
4 changes: 2 additions & 2 deletions browser/src/control/jsdialog/Widget.Containers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ JSDialog.grid = function (
rows +
', auto); \
grid-template-columns: repeat(' +
cols +
', auto);';
(cols - 1) +
', max-content) min-content;';

table.style = gridRowColStyle;

Expand Down

0 comments on commit 3c65582

Please sign in to comment.