2023-05-11 21:49:03 +00:00
|
|
|
table, tr, td {
|
2023-05-11 21:51:09 +00:00
|
|
|
user-select: none; /* Prevents dragging issue */
|
2023-05-21 01:38:52 +00:00
|
|
|
border-spacing: 0px;
|
2023-05-11 21:49:03 +00:00
|
|
|
}
|
|
|
|
td.plate_cell {
|
2023-05-21 16:45:12 +00:00
|
|
|
height: 2vmin;
|
2023-05-11 21:54:49 +00:00
|
|
|
background: none;
|
2023-05-21 01:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.plate_cell_inner {
|
2023-05-21 16:45:12 +00:00
|
|
|
aspect-ratio: 1 / 1;
|
2023-05-21 01:38:52 +00:00
|
|
|
height: 90%;
|
2023-05-11 21:54:49 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid black;
|
2023-05-11 21:49:03 +00:00
|
|
|
}
|
2023-05-21 01:38:52 +00:00
|
|
|
td.plate_cell:hover div.plate_cell_inner {
|
2023-05-11 22:39:25 +00:00
|
|
|
background: black !important;
|
2023-05-11 21:49:03 +00:00
|
|
|
}
|
2023-05-24 22:39:38 +00:00
|
|
|
td.plate_cell.in_transfer div.plate_cell_inner::after {
|
|
|
|
content: "";
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-image: repeating-linear-gradient(
|
|
|
|
45deg,
|
|
|
|
rgba(0,0,0,0.8),
|
|
|
|
rgba(0,0,0,0.8) 2px,
|
|
|
|
transparent 2px,
|
|
|
|
transparent 4px
|
|
|
|
);
|
|
|
|
}
|
2023-05-11 21:49:03 +00:00
|
|
|
|
2023-05-22 17:45:20 +00:00
|
|
|
div.source_plate td.current_select div.plate_cell_inner {
|
2023-05-24 22:39:38 +00:00
|
|
|
background-image: linear-gradient(lightblue, lightblue);
|
2023-05-11 21:49:03 +00:00
|
|
|
}
|
2023-05-22 17:45:20 +00:00
|
|
|
div.dest_plate td.current_select div.plate_cell_inner {
|
2023-05-24 22:39:38 +00:00
|
|
|
background: lightcoral;
|
2023-05-22 17:45:20 +00:00
|
|
|
}
|
2023-05-24 22:39:38 +00:00
|
|
|
|