diff --git a/Emulator.js b/Emulator.js
index 17ea6de..dfd3c33 100644
--- a/Emulator.js
+++ b/Emulator.js
@@ -486,7 +486,6 @@ Emulator.Output.cursorOn = function() { // fix by Jonas
att.value = "cursor";
cursorElement.setAttributeNode(att);
cursorElement.style.background = "#000";
- cursorElement.style.height = "100%";
cursorElement.style.border = "1px solid #fff";
Emulator.Output.getCursor().appendChild(cursorElement);
}
diff --git a/index.html b/index.html
index d952b54..abdbd8b 100644
--- a/index.html
+++ b/index.html
@@ -25,6 +25,10 @@
#output {
z-index: 1000;
}
+ #cursor{
+ width:8px;
+ height:18px;
+ }