From: Chris Rebert Date: Tue, 24 Nov 2015 08:15:17 +0000 (-0800) Subject: Prevent anchors in tooltip example from splitting across lines X-Git-Tag: v4.0.0-alpha.2~28^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a51f28e2c25e798ee1b0e5ee89cb7cbd30fb174;p=thirdparty%2Fbootstrap.git Prevent anchors in tooltip example from splitting across lines So as to decrease the number of future inquiries about said edge case (which is already documented). Refs #18304 [skip sauce] --- diff --git a/docs/assets/scss/_component-examples.scss b/docs/assets/scss/_component-examples.scss index 5135c53215..4416c2328b 100644 --- a/docs/assets/scss/_component-examples.scss +++ b/docs/assets/scss/_component-examples.scss @@ -266,6 +266,10 @@ } // Tooltips +.tooltip-demo a { + white-space: nowrap; +} + .bd-example-tooltip-static .tooltip { position: relative; display: inline-block;