2017-11-09 20:41:18 +03:00
# Primer Popover
2017-10-26 23:31:29 +03:00
2017-11-15 21:08:26 +03:00
[![npm version ](https://img.shields.io/npm/v/primer-popover.svg )](https://www.npmjs.org/package/primer-popover)
2017-11-09 20:41:18 +03:00
[![Build Status ](https://travis-ci.org/primer/primer.svg?branch=master )](https://travis-ci.org/primer/primer)
2017-10-26 23:31:29 +03:00
> Popover for suggesting, guiding, and bringing attention to specific UI elements on a page.
2017-11-09 20:41:18 +03:00
This repository is a module of the full [primer][primer] repository.
2017-10-27 18:14:00 +03:00
## Install
This repository is distributed with [npm]. After [installing npm][install-npm], you can install `primer-popover` with this command.
```
$ npm install --save primer-popover
```
## Usage
The source files included are written in [Sass][sass] (SCSS) You can simply point your sass `include-path` at your `node_modules` directory and import it like this.
```scss
@import "primer-popover/index.scss";
```
You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._
## Build
For a compiled **CSS** version of this module, an npm script is included that will output a css version to `build/build.css` The built css file is also included in the npm package:
```
$ npm run build
```
2017-10-26 23:31:29 +03:00
## Documentation
<!-- %docs
title: Popover
2018-12-07 09:42:46 +03:00
path: components/popover
2017-10-27 18:14:00 +03:00
status: Experimental
2017-10-26 23:31:29 +03:00
-->
2017-11-08 00:52:48 +03:00
Popovers are used to bring attention to specific user interface elements, typically to suggest an action or to guide users through a new experience.
{:toc}
2018-03-27 01:05:40 +03:00
A popover consist of:
2017-11-07 02:29:54 +03:00
- The block element, `.Popover` , which simply positions its content absolutely atop other body content.
- The child element, `.Popover-message` , which contains the markup for the intended messaging and the visual "caret."
In the examples below, `Popover-message` , in particular, uses a handful of utility classes to style it appropriately. And these are intended to demonstrate the default, go-to presentation for the popover's message. By default, the message's caret is centered on the top edge of the message.
The `Popover-message` element also supports several modifiers, most of which position the caret differently:
2018-03-27 02:05:04 +03:00
- [`.Popover-message--top` ](#default-top-center ) (default): Places the caret on the top edge of the message, horizontally centered.
- [`.Popover-message--bottom` ](#bottom ) Places the caret on the bottom edge of the message, horizontally centered.
- [`.Popover-message--right` ](#right ): Places the caret on the right edge of the message, vertically centered.
- [`.Popover-message--left` ](#left ): Places the caret on the left edge of the message, vertically centered.
2017-11-07 02:29:54 +03:00
Each of these modifiers also support a syntax for adjusting the positioning the caret to the right, left, top, or bottom of its respective edge. That syntax looks like:
2018-03-27 02:05:04 +03:00
- [`.Popover-message--bottom-left` ](#bottom-left )
- [`.Popover-message--bottom-right` ](#bottom-right )
- [`.Popover-message--left-bottom` ](#left-bottom )
- [`.Popover-message--left-top` ](#left-top )
- [`.Popover-message--right-bottom` ](#right-bottom )
- [`.Popover-message--right-top` ](#right-top )
- [`.Popover-message--top-left` ](#top-left )
- [`.Popover-message--top-right` ](#top-right )
2017-11-07 02:29:54 +03:00
2018-03-27 02:05:04 +03:00
Lastly, there is an added [`.Popover-message--large` ](#large ) modifier, which assumes a slightly wider popover message on screens wider than 544px.
2017-11-07 02:29:54 +03:00
### Notes
The samples below include optional markup, like:
- An outermost container that establishes stacking context (e.g. `position-relative` ).
- A choice piece of user interface (a button, in this case) to relate the popover to.
- Use of the `Details` and `js-details` family of class names, which interact with JavaScript to demonstrate dismissal of the popover by clicking the nested "Got it!" button.
2017-10-27 18:14:00 +03:00
### Basic example
2017-11-03 19:18:45 +03:00
Defaults to caret oriented top-center.
2017-10-27 18:14:00 +03:00
2017-11-03 19:18:45 +03:00
```html title="Default (top-center)"
2017-10-27 18:14:00 +03:00
< div class = "position-relative text-center" >
< button class = "btn btn-primary" > UI< / button >
2017-11-03 19:18:45 +03:00
< div class = "Popover right-0 left-0" >
< div class = "Popover-message text-left p-4 mt-2 mx-auto Box box-shadow-large" >
2017-10-27 18:14:00 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
< / div >
```
2017-11-03 19:18:45 +03:00
### Large example
2017-10-26 23:31:29 +03:00
2017-11-03 19:18:45 +03:00
```html title="Large"
< div class = "position-relative text-center" >
2017-10-27 18:14:00 +03:00
< button class = "btn btn-primary" > UI< / button >
2017-11-03 19:18:45 +03:00
< div class = "Popover right-0 left-0" >
2017-11-07 02:48:47 +03:00
< div class = "Popover-message Popover-message--large text-left p-4 mt-2 Box box-shadow-large" >
2017-10-27 18:14:00 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
< / div >
```
2017-10-26 23:31:29 +03:00
2018-03-27 02:05:04 +03:00
### Bottom
2017-10-26 23:31:29 +03:00
2018-03-27 02:05:04 +03:00
```html title="Bottom"
< div class = "position-relative text-center" >
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--bottom p-4 mx-auto mb-2 text-left Box box-shadow-large" >
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
2017-10-27 18:14:00 +03:00
< button class = "btn btn-primary" > UI< / button >
2018-03-27 02:05:04 +03:00
< / div >
```
### Bottom-right
```html title="Bottom-right"
< div class = "position-relative text-right" >
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--bottom-right p-4 mb-2 text-left Box box-shadow-large" >
2017-10-27 18:14:00 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
2018-03-27 02:05:04 +03:00
< button class = "btn btn-primary" > UI< / button >
2017-10-26 23:31:29 +03:00
< / div >
```
2018-03-27 02:05:04 +03:00
### Bottom-left
2017-11-03 20:32:27 +03:00
2018-03-27 02:05:04 +03:00
```html title="Bottom-left"
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--bottom-left p-4 mb-2 Box box-shadow-large" >
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
< button class = "btn btn-primary" > UI< / button >
```
### Left
```html title="Left"
< div class = "d-flex flex-justify-center flex-items-center" >
2017-11-03 20:32:27 +03:00
< button class = "btn btn-primary" > UI< / button >
2018-03-27 02:05:04 +03:00
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--left p-4 ml-2 Box box-shadow-large" >
2017-11-03 20:32:27 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
< / div >
```
2018-03-27 02:05:04 +03:00
### Left-bottom
2017-10-27 18:14:00 +03:00
2018-03-27 02:05:04 +03:00
```html title="Left-bottom"
< div class = "d-flex flex-justify-center flex-items-end" >
2018-03-27 01:05:40 +03:00
< button class = "btn btn-primary" > UI< / button >
2018-03-27 02:05:04 +03:00
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--left-bottom p-4 ml-2 Box box-shadow-large" >
2018-03-27 01:05:40 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
2017-10-27 18:14:00 +03:00
< / div >
< / div >
```
2017-11-03 19:18:45 +03:00
2018-03-27 02:05:04 +03:00
### Left-top
2017-11-03 19:18:45 +03:00
2018-03-27 02:05:04 +03:00
```html title="Left-top"
< div class = "d-flex flex-justify-center flex-items-start" >
2018-03-27 01:05:40 +03:00
< button class = "btn btn-primary" > UI< / button >
2018-03-27 02:05:04 +03:00
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--left-top p-4 ml-2 Box box-shadow-large" >
2018-03-27 01:05:40 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
2017-11-03 19:18:45 +03:00
< / div >
< / div >
```
2018-03-27 02:05:04 +03:00
### Right
2017-11-03 19:18:45 +03:00
2018-03-27 02:05:04 +03:00
```html title="Right"
< div class = "d-flex flex-justify-center flex-items-center" >
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--right p-4 mr-2 Box box-shadow-large" >
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
2018-03-27 01:05:40 +03:00
< button class = "btn btn-primary" > UI< / button >
2018-03-27 02:05:04 +03:00
< / div >
```
### Right-bottom
```html title="Right-bottom"
< div class = "d-flex flex-justify-center flex-items-end" >
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--right-bottom p-4 mr-2 Box box-shadow-large" >
2018-03-27 01:05:40 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
2017-11-03 19:18:45 +03:00
< / div >
2018-03-27 02:05:04 +03:00
< button class = "btn btn-primary" > UI< / button >
2017-11-03 19:18:45 +03:00
< / div >
```
2018-03-27 02:05:04 +03:00
### Right-top
2017-11-03 20:32:27 +03:00
2018-03-27 02:05:04 +03:00
```html title="Right-top"
< div class = "d-flex flex-justify-center flex-items-start" >
< div class = "Popover position-relative" >
< div class = "Popover-message Popover-message--right-top p-4 mr-2 Box box-shadow-large" >
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
< / div >
< button class = "btn btn-primary" > UI< / button >
< / div >
```
### Top-left
```html title="Top-left"
2018-03-27 01:05:40 +03:00
< div class = "position-relative" >
< button class = "btn btn-primary" > UI< / button >
< div class = "Popover" >
2018-03-27 02:05:04 +03:00
< div class = "Popover-message Popover-message--top-left p-4 mt-2 Box box-shadow-large" >
2018-03-27 01:05:40 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
2017-11-03 20:32:27 +03:00
< / div >
< / div >
```
2018-03-27 02:05:04 +03:00
### Top-right
2017-11-03 20:32:27 +03:00
2018-03-27 02:05:04 +03:00
```html title="Top-right"
< div class = "position-relative text-right" >
2018-03-27 01:05:40 +03:00
< button class = "btn btn-primary" > UI< / button >
2018-03-27 02:05:04 +03:00
< div class = "Popover right-0" >
< div class = "Popover-message Popover-message--top-right text-left p-4 mt-2 Box box-shadow-large" >
2018-03-27 01:05:40 +03:00
< h4 class = "mb-2" > Popover heading< / h4 >
< p > Message about this particular piece of UI.< / p >
< button type = "submit" class = "btn btn-outline mt-2 text-bold" > Got it!< / button >
< / div >
2017-11-03 20:32:27 +03:00
< / div >
< / div >
```
2017-10-26 23:31:29 +03:00
<!-- %enddocs -->
## License
2017-10-27 18:14:00 +03:00
[MIT ](./LICENSE ) © [GitHub ](https://github.com/ )
2017-10-26 23:31:29 +03:00
2017-11-09 20:41:18 +03:00
[primer]: https://github.com/primer/primer
[docs]: http://primer.github.io/
2017-10-26 23:31:29 +03:00
[npm]: https://www.npmjs.com/
[install-npm]: https://docs.npmjs.com/getting-started/installing-node
[sass]: http://sass-lang.com/