@@ -306,49 +306,79 @@ const ComponentsPage = React.createClass({
306
306
307
307
</ div >
308
308
309
- { /* Tooltip */ }
309
+ { /* overlays */ }
310
310
< div className = 'bs-docs-section' >
311
- < h1 id = 'tooltips' className = 'page-header' > Tooltips < small > Tooltip</ small > </ h1 >
312
- < h2 id = 'tooltips-examples' > Example tooltips</ h2 >
311
+ < h1 id = 'overlays' className = 'page-header' > Overlays < small > Overlay, Tooltip, Popover</ small > </ h1 >
313
312
314
- < p > Tooltip component.</ p >
315
- < ReactPlayground codeText = { Samples . TooltipBasic } />
313
+ < h2 id = 'overlays-examples' > Overlay</ h2 >
314
+ < p >
315
+ Overlays allow components to be rendered and positioned to the left, right, top, or bottom of another component.
316
+ They are perfect for simple tooltips or even more complicated popups.
317
+ </ p >
318
+ < ReactPlayground codeText = { Samples . Overlay } />
316
319
317
- < p > Positioned tooltip component.</ p >
318
- < ReactPlayground codeText = { Samples . TooltipPositioned } />
320
+ < h2 id = 'overlays-examples' > Overlay Trigger</ h2 >
321
+ < p >
322
+ Often you will want to show or hide and Overlay in response to an action by its target, such as hovering over a link.
323
+ Since this is such a common pattern we provide the < code > OverlayTrigger</ code > component to reduce the amount of boilerplate
324
+ you need to write to implement this pattern.
325
+ </ p >
326
+ < ReactPlayground codeText = { Samples . OverlayTrigger } />
319
327
320
- < p > Positioned tooltip in copy.</ p >
321
- < ReactPlayground codeText = { Samples . TooltipInCopy } />
328
+ < h3 id = 'overlays-props' > Props</ h3 >
322
329
323
- < h3 id = 'tooltip-props' > Props</ h3 >
330
+ < h4 > Overlay</ h4 >
331
+ < PropTable component = 'Overlay' />
324
332
325
- < PropTable component = 'Tooltip' />
333
+ < h4 > OverlayTrigger</ h4 >
334
+ < PropTable component = 'OverlayTrigger' />
326
335
327
- </ div >
336
+ { /* Tooltip */ }
337
+ < div className = 'bs-docs-section' >
338
+ < h2 id = 'tooltips' > Tooltip</ h2 >
339
+ < p >
340
+ You don't always need to create custom styling for your overlays. Bootstrap provides two great options out of the box.
341
+ Tooltips can be used inside an < code > Overlay</ code > Component, or an < code > OverlayTrigger</ code >
342
+ </ p >
343
+ < ReactPlayground codeText = { Samples . TooltipBasic } exampleClassName = 'tooltip-static' />
328
344
329
- { /* Popover */ }
330
- < div className = 'bs-docs-section' >
331
- < h1 id = 'popovers' className = 'page-header' > Popovers < small > Popover</ small > </ h1 >
332
- < h2 id = 'popovers-examples' > Example popovers</ h2 >
345
+ < p > Positioned tooltip component.</ p >
346
+ < ReactPlayground codeText = { Samples . TooltipPositioned } />
333
347
334
- < p > Popover component .</ p >
335
- < ReactPlayground codeText = { Samples . PopoverBasic } />
348
+ < p > Positioned tooltip in copy .</ p >
349
+ < ReactPlayground codeText = { Samples . TooltipInCopy } />
336
350
337
- < p > Positioned popover component. </ p >
338
- < ReactPlayground codeText = { Samples . PopoverPositioned } />
351
+ < h3 id = 'tooltips-props' > Props </ h3 >
352
+ < PropTable component = 'Tooltip' />
339
353
340
- < p > Trigger behaviors. It's inadvisable to use < code > "hover"</ code > or < code > "focus"</ code > triggers for popovers, because they have poor accessibility from keyboard and on mobile devices.</ p >
341
- < ReactPlayground codeText = { Samples . PopoverTriggerBehaviors } />
354
+ </ div >
355
+
356
+ { /* Popover */ }
357
+ < div className = 'bs-docs-section' >
358
+ < h2 id = 'popovers' > Popovers</ h2 >
359
+
360
+ < p >
361
+ The Popover component, like the Tooltip can be used with an < code > Overlay</ code > Component, or an < code > OverlayTrigger</ code > .
362
+ Unlike the Tooltip popovers are designed to display more reobust information about their targets.
363
+ </ p >
364
+ < ReactPlayground codeText = { Samples . PopoverBasic } />
342
365
343
- < p > Popover component in container .</ p >
344
- < ReactPlayground codeText = { Samples . PopoverContained } exampleClassName = 'bs-example-popover-contained' />
366
+ < p > Positioned popover component .</ p >
367
+ < ReactPlayground codeText = { Samples . PopoverPositioned } />
345
368
346
- < p > Positioned popover components in scrolling container .</ p >
347
- < ReactPlayground codeText = { Samples . PopoverPositionedScrolling } exampleClassName = 'bs-example-popover-scroll' />
369
+ < p > Trigger behaviors. It's inadvisable to use < code > "hover" </ code > or < code > "focus" </ code > triggers for popovers, because they have poor accessibility from keyboard and on mobile devices .</ p >
370
+ < ReactPlayground codeText = { Samples . PopoverTriggerBehaviors } />
348
371
349
- < h3 id = 'popover-props' > Props</ h3 >
372
+ < p > Popover component in container.</ p >
373
+ < ReactPlayground codeText = { Samples . PopoverContained } exampleClassName = 'bs-example-popover-contained' />
350
374
351
- < PropTable component = 'Popover' />
375
+ < p > Positioned popover components in scrolling container.</ p >
376
+ < ReactPlayground codeText = { Samples . PopoverPositionedScrolling } exampleClassName = 'bs-example-popover-scroll' />
377
+
378
+ < h3 id = 'popover-props' > Props</ h3 >
379
+
380
+ < PropTable component = 'Popover' />
381
+ </ div >
352
382
</ div >
353
383
354
384
{ /* Progress Bar */ }
@@ -833,6 +863,7 @@ const ComponentsPage = React.createClass({
833
863
</ SubNav >
834
864
< NavItem href = '#panels' key = { 4 } > Panels</ NavItem >
835
865
< NavItem href = '#modals' key = { 5 } > Modals</ NavItem >
866
+ < NavItem href = '#overlays' key = { 27 } > Overlays</ NavItem >
836
867
< NavItem href = '#tooltips' key = { 6 } > Tooltips</ NavItem >
837
868
< NavItem href = '#popovers' key = { 7 } > Popovers</ NavItem >
838
869
< NavItem href = '#progress' key = { 8 } > Progress bars</ NavItem >
0 commit comments