diff --git a/code/game/machinery/computer/dna_console.dm b/code/game/machinery/computer/dna_console.dm
index 0a15070c4cc..ae7773fb3dc 100644
--- a/code/game/machinery/computer/dna_console.dm
+++ b/code/game/machinery/computer/dna_console.dm
@@ -523,7 +523,10 @@
for(var/i in 1 to DNA_SEQUENCE_LENGTH)
var/num = 1+(i-1)*2
var/genenum = num+(DNA_SEQUENCE_LENGTH*2*(block-1))
- temp_html += "
| "
+ if(sequence[num] == "X")
+ temp_html += " | "
+ else
+ temp_html += " | "
temp_html += ""
for(var/i in 1 to DNA_SEQUENCE_LENGTH)
temp_html += "| | "
@@ -531,7 +534,11 @@
for(var/i in 1 to DNA_SEQUENCE_LENGTH)
var/num = i*2
var/genenum = num+(DNA_SEQUENCE_LENGTH*2*(block-1))
- temp_html += " | "
+
+ if(sequence[num] == "X")
+ temp_html += " | "
+ else
+ temp_html += " | "
temp_html += "
"
temp_html += "
"
else
diff --git a/html/browser/scannernew.css b/html/browser/scannernew.css
index 9e9f8ce1f48..25d4994bd5a 100644
--- a/html/browser/scannernew.css
+++ b/html/browser/scannernew.css
@@ -14,6 +14,15 @@
font-family: Fixed, monospace;
float: left;
}
+a.incompleteBlock
+{
+ background: #8a4040;
+}
+a.incompleteBlock:hover
+{
+ color: #40628a;
+ background: #ffffff;
+}
img.selected
{
border: 1px solid blue;