From b49d0cc6e726bb160f6ef8aac42c18ed5bd93a51 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 1 Apr 2014 12:00:37 +0100 Subject: [PATCH] docs(css): ensure all type-hints have a background color If the type of a type-hint was not recognized, say a "Promise", then the background color was left as white. Given that the default foreground color is also white, this meant that such type-hints were invisible. Closes #6934 --- docs/app/assets/css/docs.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/app/assets/css/docs.css b/docs/app/assets/css/docs.css index 7f0f83e9..8a645302 100644 --- a/docs/app/assets/css/docs.css +++ b/docs/app/assets/css/docs.css @@ -422,6 +422,7 @@ iframe.example { .type-hint { display:inline-block; + background: gray; } .variables-matrix .type-hint { @@ -567,7 +568,7 @@ h4 { } .return-arguments td:first-child { - width:100px; + width:100px; } ul.methods > li,