plate-tool/assets/css/plate.css

26 lines
518 B
CSS
Raw Normal View History

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 */
border-spacing: 0px;
2023-05-11 21:49:03 +00:00
}
td.plate_cell {
2023-05-21 16:45:12 +00:00
height: 2vmin;
background: none;
}
div.plate_cell_inner {
2023-05-21 16:45:12 +00:00
aspect-ratio: 1 / 1;
height: 90%;
border-radius: 50%;
border: 2px solid black;
2023-05-11 21:49:03 +00:00
}
td.plate_cell:hover div.plate_cell_inner {
background: black !important;
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 {
background: lightblue !important;
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 {
background: lightcoral !important;
}