mirror of
https://github.com/primer/css.git
synced 2024-12-19 12:12:02 +03:00
118 lines
4.4 KiB
Markdown
118 lines
4.4 KiB
Markdown
# Primer CSS Tooltips
|
|
|
|
[![npm version](http://img.shields.io/npm/v/primer-tooltips.svg)](https://www.npmjs.org/package/primer-tooltips)
|
|
[![Build Status](https://travis-ci.org/primer/primer-css.svg?branch=master)](https://travis-ci.org/primer/primer-css)
|
|
|
|
> Add tooltips built entirely in CSS to nearly any element. Just add a few classes and an aria-label attribute.
|
|
|
|
This repository is a module of the full [primer-css][primer-css] repository.
|
|
|
|
## Install
|
|
|
|
This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-tooltips` with this command.
|
|
|
|
```
|
|
$ npm install --save primer-tooltips
|
|
```
|
|
|
|
## 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-tooltips/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, a 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
|
|
```
|
|
|
|
## Documentation
|
|
|
|
<!-- %docs
|
|
title: Tooltips
|
|
status: Stable
|
|
-->
|
|
|
|
Add tooltips built entirely in CSS to nearly any element. Just add a few classes and an `aria-label` attribute.
|
|
|
|
**Attention**: we use `aria-label` for tooltips instead of something like `data-tooltip` because it is crucial that the tooltip content is available for screen reader users as well. However, `aria-label` **replaces** the text content of an element for screen reader users, so only use tooltip if there is no better way to present the information, or consider using `title` for supplement information.
|
|
|
|
In addition, you'll want to specify a direction:
|
|
|
|
- `.tooltipped-n`
|
|
- `.tooltipped-ne`
|
|
- `.tooltipped-e`
|
|
- `.tooltipped-se`
|
|
- `.tooltipped-s`
|
|
- `.tooltipped-sw`
|
|
- `.tooltipped-w`
|
|
- `.tooltipped-nw`
|
|
|
|
Tooltip classes will conflict with Octicon classes, and as such, must go on a parent element instead of the icon.
|
|
|
|
```html
|
|
<span class="tooltipped tooltipped-n border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the North side.">
|
|
Tooltip North
|
|
</span>
|
|
<span class="tooltipped tooltipped-ne border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the North East side.">
|
|
Tooltip North East
|
|
</span>
|
|
<span class="tooltipped tooltipped-e border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the East side.">
|
|
Tooltip East
|
|
</span>
|
|
<span class="tooltipped tooltipped-se border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the South East side.">
|
|
Tooltip South East
|
|
</span>
|
|
<span class="tooltipped tooltipped-s border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the South side.">
|
|
Tooltip South
|
|
</span>
|
|
<span class="tooltipped tooltipped-sw border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the South West side.">
|
|
Tooltip South West
|
|
</span>
|
|
<span class="tooltipped tooltipped-w border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the West side.">
|
|
Tooltip West
|
|
</span>
|
|
<span class="tooltipped tooltipped-nw border p-2 mb-2 mr-2 float-left" aria-label="This is the tooltip on the North West side.">
|
|
Tooltip North West
|
|
</span>
|
|
```
|
|
|
|
#### Tooltips with multiple lines
|
|
Use `.tooltipped-multiline` when you have long content. This style has some limitations: you cannot pre-format the text with newlines, and tooltips are limited to a max-width of `250px`.
|
|
|
|
|
|
```html
|
|
<span class="tooltipped tooltipped-multiline tooltipped-n border p-2" aria-label="This is the tooltip with multiple lines. This is the tooltip with multiple lines.">
|
|
Tooltip with multiple lines
|
|
</span>
|
|
```
|
|
|
|
#### Tooltips No Delay
|
|
|
|
By default the tooltips have a slight delay before appearing. This is to keep multiple tooltips in the UI from being distracting. There is a modifier class you can use to override this. `.tooltipped-no-delay`
|
|
|
|
```html
|
|
<span class="tooltipped tooltipped-n tooltipped-no-delay border p-2" aria-label="This is the tooltip on the no delay side.">
|
|
Tooltip no delay
|
|
</span>
|
|
```
|
|
|
|
<!-- %enddocs -->
|
|
|
|
## License
|
|
|
|
[MIT](./LICENSE) © [GitHub](https://github.com/)
|
|
|
|
[primer-css]: https://github.com/primer/primer
|
|
[docs]: http://primercss.io/
|
|
[npm]: https://www.npmjs.com/
|
|
[install-npm]: https://docs.npmjs.com/getting-started/installing-node
|
|
[sass]: http://sass-lang.com/
|