Stop using quirks mode in commandline.html

If you don't use a doctype then browsers use quirks mode, which is very
confusing. In particular tables don't inherit styles properly and Olie
gets very confused.
This commit is contained in:
Colin Caine 2018-05-21 02:33:07 +01:00
parent 133c3817ef
commit 532f0acd67
2 changed files with 1 additions and 4 deletions

View file

@ -1,3 +1,4 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

View file

@ -30,7 +30,3 @@
--tridactyl-hint-bg: rgba(13, 31, 54, 0.25);
--tridactyl-hint-outline: 1px solid var(--tridactyl-hintspan-bg);
}
:root.TridactylThemeDark #completions table tr td {
color: var(--tridactyl-cmplt-fg);
}