Skip to content

Commit

Permalink
Make cells fully clickable (FF)
Browse files Browse the repository at this point in the history
This works for me on:
Firefox 115 on Windows 10

See: https://www.whatismybrowser.com/
  • Loading branch information
vmcj committed Aug 16, 2023
1 parent f8c6f93 commit f7be853
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion webapp/public/style_jury.css
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,17 @@ table.submissions-table {

#submissionTable td {
/* Setup basic structure to make diffs easy (FF) */
border: 1px solid red;
height: 100%;
padding: 0;
}

#submissionTable td a {
/* Setup basic structure to make diffs easy (FF) */
background-color: white;
background-color: yellow;
display: table;
width: 100%;
height: 100%;
}

#submissionTable td * {
Expand Down

0 comments on commit f7be853

Please sign in to comment.