From ff02f059f5b88f225d05ef2a038b37e369ada680 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Tue, 6 Feb 2007 08:13:06 +0000 Subject: [PATCH] #104175: Fix disappearing fieldset title in firefox. --- themes/garland/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/garland/style.css b/themes/garland/style.css index 7a58c6d9913f..94776035bc38 100644 --- a/themes/garland/style.css +++ b/themes/garland/style.css @@ -785,6 +785,11 @@ fieldset { background: #fff url(images/gradient-inner.png) repeat-x 0 0; } +fieldset legend { + /* Fix disappearing legend in FFox */ + display: block; +} + html.js fieldset.collapsed { background: transparent; padding-top: 0;