Skip to content

Commit

Permalink
Set basic coloring to show difference
Browse files Browse the repository at this point in the history
Using the borders would actually move the objects so would be in the way
of the mouse pointer.
  • Loading branch information
vmcj committed Aug 16, 2023
1 parent 130daff commit f8c6f93
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions webapp/public/style_jury.css
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,27 @@ table.submissions-table {
color: white;
}

/* Basic coloring to show the clickable areas */
#submissionTable {
background-color: lime;
}

#submissionTable tr {
background-color: red;
}

#submissionTable td {
background-color: blue;
}

#submissionTable td a {
background-color: yellow;
}

#submissionTable td * {
background-color: grey;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
#submissionTable {
/* Setup basic structure to make diffs easy (Chrome) */
Expand All @@ -213,7 +234,7 @@ table.submissions-table {

#submissionTable td a {
/* Setup basic structure to make diffs easy (Chrome) */
background-color: blue;
background-color: black;
}

#submissionTable td * {
Expand All @@ -236,7 +257,7 @@ table.submissions-table {

#submissionTable td a {
/* Setup basic structure to make diffs easy (FF) */
background-color: red;
background-color: white;
}

#submissionTable td * {
Expand Down

0 comments on commit f8c6f93

Please sign in to comment.