From af45472dfe5e81a3ad01ea33f039f7eefe9e5245 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 10 Jun 2014 11:41:32 -0700 Subject: buttons line-height Firefox bugfix has been shipped! Remove Wall of Browser Bugs entry. Update mention of the bug in the CSS docs. [skip sauce] --- docs/_includes/css/buttons.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes/css/buttons.html') diff --git a/docs/_includes/css/buttons.html b/docs/_includes/css/buttons.html index f6a131aaa..15b0f5ed2 100644 --- a/docs/_includes/css/buttons.html +++ b/docs/_includes/css/buttons.html @@ -173,6 +173,6 @@

Cross-browser rendering

As a best practice, we highly recommend using the <button> element whenever possible to ensure matching cross-browser rendering.

-

Among other things, there's a Firefox bug that prevents us from setting the line-height of <input>-based buttons, causing them to not exactly match the height of other buttons on Firefox.

+

Among other things, there's a bug in Firefox <30 that prevents us from setting the line-height of <input>-based buttons, causing them to not exactly match the height of other buttons on Firefox.

-- cgit v1.2.3 From d4ce4dbf122158e3d0d714ac8eead0144f071d05 Mon Sep 17 00:00:00 2001 From: Ilya Radchenko Date: Mon, 23 Jun 2014 12:25:14 -0400 Subject: fix typo in css - buttons --- docs/_includes/css/buttons.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes/css/buttons.html') diff --git a/docs/_includes/css/buttons.html b/docs/_includes/css/buttons.html index 15b0f5ed2..bfc5ded80 100644 --- a/docs/_includes/css/buttons.html +++ b/docs/_includes/css/buttons.html @@ -88,7 +88,7 @@

Active state

-

Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <button> elements, this is done via :active. For <a> elements, it's done with .active. However, you may use .active on <button>s should you need to replicate the active state progammatically.

+

Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <button> elements, this is done via :active. For <a> elements, it's done with .active. However, you may use .active on <button>s should you need to replicate the active state programmatically.

Button element

No need to add :active as it's a pseudo-class, but if you need to force the same appearance, go ahead and add .active.

-- cgit v1.2.3