mdb-ui-kit/README.md

354 lines
15 KiB
Markdown
Raw Normal View History

# bootstrap-material-design
[![build status](https://travis-ci.org/FezVrasta/bootstrap-material-design.svg?branch=master)](https://travis-ci.org/FezVrasta/bootstrap-material-design)
2014-11-28 15:09:57 +03:00
[![gratipay](https://img.shields.io/gratipay/FezVrasta.svg)](https://gratipay.com/FezVrasta)
2014-12-28 17:39:03 +03:00
[![Bower version](https://badge.fury.io/bo/bootstrap-material-design.svg)](https://github.com/FezVrasta/bootstrap-material-design)
2014-10-03 17:52:14 +04:00
[![banner](demo/imgs/banner.jpg)](#)
2014-08-21 11:48:39 +04:00
Material Design for Bootstrap is a Bootstrap V3 compatible theme; it is an easy way to use the new [Material Design guidelines by Google](http://www.google.com/design/spec/material-design/introduction.html) in your Bootstrap 3 based application.
Just include the theme, after the Bootstrap CSS and include the JavaScript at the end of your document (just before the `</body>` tag), and everything will be converted to Material Design (Paper) style.
2014-08-21 11:48:39 +04:00
2016-01-07 21:45:04 +03:00
**NOTE**: This V3 compatible theme is still in development, it could be used on production websites but I can't guarantee compatibility with previous versions.
2014-08-21 11:48:39 +04:00
2015-01-06 12:58:26 +03:00
Check out [the demo at this link](http://fezvrasta.github.io/bootstrap-material-design/).
2014-08-21 11:48:39 +04:00
2016-01-07 21:45:04 +03:00
## V4 Development
The next major Bootstrap V4 compatible release of bootstrap-material-design is [in development](https://github.com/FezVrasta/bootstrap-material-design/tree/v4-dev). Check out the [documentation](http://rosskevin.github.io/bootstrap-material-design/migration/) (temporary site url) for migration, getting started, development, and examples. It has some requested implementations and more to come over V3. There are a lot of great changes in V4, but be warned, both Bootstrap V4 and our own implementation is changing daily. If you want to get involved, please do so by submitting pull requests. Before undertaking any major PR effort, please check the [milestone](https://github.com/FezVrasta/bootstrap-material-design/milestones/V4) for an existing issue. If there isn't one, please file a new issue and `cc: @rosskevin` so we can discuss and assign the work so effort is not duplicated. Thank you!
Please prefix any issue or pull request title with `V4`.
Major differences:
- Customized bootstrap build with variables instead of being an addon theme
- ES6 Javascript classes
- SCSS
- New scalable documentation framework that mirrors Bootstrap's own
- Documentation includes Bootstrap reference pages to display default rendering
- New build/documentation process (also mimics Bootstrap's project setup)
2014-09-10 11:36:44 +04:00
## How to install
2016-02-03 23:56:31 +03:00
You may install this theme using Bower or Meteor:
2014-10-03 15:58:24 +04:00
2016-02-05 16:31:28 +03:00
- NPM : `npm install bootstrap-material`
2015-01-06 12:58:26 +03:00
- Bower : `bower install bootstrap-material-design`
- Meteor: `meteor add fezvrasta:bootstrap-material-design`
2014-10-31 12:06:45 +03:00
2015-01-06 12:58:26 +03:00
If you prefer, you can include this framework in your project using our official CDN:
2014-10-31 12:06:45 +03:00
2015-01-06 12:58:26 +03:00
- [Bootstrap Material Design on CDNJS.com](https://cdnjs.com/libraries/bootstrap-material-design)
- [Bootstrap Material Design on JSDelivr.com](http://www.jsdelivr.com/#!bootstrap.material-design)
2014-10-03 15:58:24 +04:00
2014-09-10 11:36:44 +04:00
## Getting started
2015-11-30 22:24:01 +03:00
Add the necessary links to your `<head>` element for fonts and stylsheets:
2015-11-25 01:49:15 +03:00
```html
<!-- Material Design fonts -->
2016-01-20 16:57:57 +03:00
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
2015-11-25 01:49:15 +03:00
<!-- Bootstrap -->
2015-12-08 02:20:32 +03:00
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
2015-11-25 01:49:15 +03:00
<!-- Bootstrap Material Design -->
<link href="dist/css/bootstrap-material-design.css" rel="stylesheet">
<link href="dist/css/ripples.min.css" rel="stylesheet">
```
2015-12-14 17:52:40 +03:00
### Bower
2015-12-14 17:52:40 +03:00
Many use bower including compiling source for this project. Here are a couple of things to know:
1. When using SASS, `@import` directives cannot be interpolated. Given the variety of configurations, the typical `bower_components` directory is occasionally in a different location. Given the options, a `loadPath` was [added to the SASS compiler](https://github.com/FezVrasta/bootstrap-material-design/pull/762/files)
so that bootstrap files could be loaded without specifying the path to the `bower_components` directory. You may similarly need to add a load path to your compiler. It is still debatable if this is for the greater good, but seems like the only
way to accommodate multiple configurations.
2015-12-14 17:52:40 +03:00
2. This project will install both `bootstrap` and `bootstrap-sass` in `bower_components`. Each is used for the LESS and SASS version compilation respectively. If you are only using one, feel free to [ignore the other bower dependency](http://stackoverflow.com/a/27791606/2363935).
## Support and Contributions
All issues filed should be reduced to a [CodePen](http://codepen.io/rosskevin/pen/VvRgrN) test case where possible. Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file.
If you like this project you may support it by donating via Gittip, starring this repository or reporting issues.
[![gittip](demo/imgs/gittip-button.jpg)](https://www.gratipay.com/FezVrasta/)
[![issues](demo/imgs/issues-button.jpg)](https://github.com/FezVrasta/bootstrap-material-design/issues)
## Development
2014-09-07 19:37:32 +04:00
We are using Grunt to automate the workflow and build process. Ensure you have nodejs installed and grunt-cli installed globally.
After cloning the repo, run `npm install` to ensure you have all dev dependencies.
2014-09-07 19:37:32 +04:00
### Grunt
2014-08-22 17:04:38 +04:00
- `grunt build` - run the tests and compile the less/sass. See [Gruntfile.js](Gruntfile.js) for details on targets.
- `grunt test` - browser-based Jasmine unit tests.
- `grunt serve` - build and fire up an http server with live-reload and a watch for development purposes.
2014-08-22 17:04:38 +04:00
### LESS & SASS
2014-08-21 11:48:39 +04:00
The bootstrap 3.x compatible version (master) is developed using LESS, with an automated conversion to SASS.
2014-10-02 13:36:05 +04:00
The upcoming 4.x compatible version is being actively developed using SASS on the `v4-dev` branch.
2014-10-03 12:02:21 +04:00
2015-01-06 12:58:26 +03:00
## Documentation
2014-08-21 11:48:39 +04:00
Material Design ([spec](http://www.google.com/design/spec/material-design/introduction.html)) for Bootstrap provides
styles for bootstrap based markup to comply with Material Design concepts.
2014-08-21 11:48:39 +04:00
### Customization
#### Colors
2014-08-21 11:48:39 +04:00
There are 17 color variations (in addition to the classic 4 variations) described by the Material Design color palette:
2014-08-21 11:48:39 +04:00
![palette](docs/assets/img/material-design-color-palette.jpg)
2014-08-21 11:48:39 +04:00
##### Compile your customized distributable
If you are using the static css files, you may want to use your own color variation. To do so:
2014-08-21 11:48:39 +04:00
1. Download the source or obtain the source with bower
2. Edit the `less/_variables.less` file and alter the color variables. You are most likely interested in altering `@brand-primary`. For a list of material design color palette variables, refer to `less/_colors.less`
2014-08-21 11:48:39 +04:00
```less
@brand-primary: @teal;
@brand-success: @green;
@brand-danger: @red;
@brand-warning: @deep-orange;
@brand-info: @light-blue;
```
3. Compile and test your distributable css by running `grunt serve`, this will launch your browser to the test site. Peruse and verify your color choices
4. From your application, you may now reference the compiled css files in `dist/css`
##### Customize via less variables
2015-03-09 19:10:44 +03:00
If you are referencing source from your own application's less file, you may simply customize the colors by redefining the color variables _after_ including bootstrap-material-design. See above for a description of variables.
2015-11-19 01:49:06 +03:00
### Forms
All inputs should be surrounded by a standard `.form-group`, and as such `material.js` will enforce this. The `.form-group` is
used to signal different input styles and variations. See the examples for variations.
#### Sizing
In general, it is preferred that sizing be altered with either `.form-group-sm` or `.form-group-lg`. Due to the interconnected
nature of inputs, labels, margins and padding, `material.js` will convert any use of `.input-sm` or `.input-lg` to
`.form-group-sm` or `.form-group-lg` in order to reduce the necessary markup/variations and get a standard sizing with
fewer side effects.
#### Buttons
2014-08-21 11:48:39 +04:00
Buttons are flat by default, without shadows. Add `.btn-raised` to a button to add a permanent shadow to it. See the [button examples](http://fezvrasta.github.io/bootstrap-material-design/bootstrap-elements.html#buttons)
2014-08-21 11:48:39 +04:00
2015-11-19 01:49:06 +03:00
#### Inputs
2015-11-19 01:49:06 +03:00
##### Labels
2015-11-19 01:55:30 +03:00
The following classes should be placed on the `.form-group` to indicate the label style:
- `.label-floating` - renders label as a placeholder, that animates above the field upon focus
- `.label-static` - renders label above the field. `input placeholder` attribute can also be used in conjunction
- `.label-placeholder` - renders a label as a placeholder only
- no label, but use of `input placeholder` attribute - same rendering as `.label-placeholder`
2015-11-19 01:49:06 +03:00
##### Hints
Upon focus, a hint can be displayed. Use any `p | span` with `.help-block`.
2015-11-19 01:49:06 +03:00
##### Examples
```html
<div class="form-group label-static">
<label for="i2" class="control-label">label-static</label>
<input type="email" class="form-control" id="i2" placeholder="placeholder attribute">
<p class="help-block">This is a hint as a <code>p.help-block.hint</code></p>
</div>
<div class="form-group label-floating">
<label for="i5" class="control-label">label-floating</label>
<input type="email" class="form-control" id="i5">
<span class="help-block">This is a hint as a <code>span.help-block.hint</code></span>
</div>
2014-08-21 11:48:39 +04:00
<div class="form-group label-placeholder">
<label for="i5p" class="control-label">label-placeholder</label>
<input type="email" class="form-control" id="i5p">
<span class="help-block">This is a hint as a <code>span.help-block.hint</code></span>
</div>
```
2014-08-21 11:48:39 +04:00
2015-11-19 01:49:06 +03:00
#### Radio, Checkbox, Toggle
Be sure to inspect the source of the demos to find proper markup examples. Remember to use the proper HTML markup.
Radio example:
2015-11-19 01:53:08 +03:00
```html
2015-11-19 01:58:49 +03:00
<div class="form-group">
<label class="col-lg-2 control-label">Radios</label>
<div class="col-lg-10">
<div class="radio radio-primary">
<label>
<input type="radio" name="optionsRadios" checked="">
Option one
</label>
</div>
<div class="radio radio-primary">
<label>
<input type="radio" name="optionsRadios">
Option two
</label>
2014-08-21 11:48:39 +04:00
</div>
</div>
2015-11-19 01:58:49 +03:00
</div>
```
2014-09-07 19:13:34 +04:00
### Icons
2014-08-26 12:50:52 +04:00
Bootstrap Material Design supports the full range of original Material Design icons!
[See the full set of material design icons at the material icons library.](https://www.google.com/design/icons/)
2014-08-26 12:50:52 +04:00
Its easy to incorporate icons into your web page. [Heres an example](http://fezvrasta.github.io/bootstrap-material-design/bootstrap-elements.html#icon):
```
<i class="material-icons">face</i> face
2015-11-19 01:53:08 +03:00
```
2014-10-28 14:39:33 +03:00
Please be sure that the fonts are properly setup, see [Getting Started](#getting-started).
### Cards
A card will expand to fill all of the available width (e.g. column's width). Card's height will be automatically resized to match width.
Here is an example on how to use it:
```html
<div class="card">
<div class="card-height-indicator"></div>
<div class="card-content">
<div class="card-image">
<img src="./image.jpg" alt="Loading image...">
<h3 class="card-image-headline">Lorem Ipsum Dolor</h3>
</div>
<div class="card-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<footer class="card-footer">
<button class="btn btn-flat">Share</button>
<button class="btn btn-flat btn-warning">Learn More</button>
</footer>
</div>
</div>
```
Cards will adapt to column's width. The card below will have width equal to col-lg-6:
2015-11-19 01:53:08 +03:00
```html
2015-11-19 01:58:49 +03:00
<div class="row">
<div class="col-lg-3"></div>
2015-11-19 01:58:49 +03:00
<div class="col-lg-6">
<div class="card">
...
</div>
</div>
2015-11-19 01:58:49 +03:00
<div class="col-lg-3"></div>
</div>
2015-11-19 01:53:08 +03:00
```
## material.js
2014-10-18 20:12:02 +04:00
`material.js` is a jQuery plugin that adds some magic to your markup and allows Material Design for Bootstrap to style some elements like inputs, checkboxes, radios etc.
2014-10-18 20:12:02 +04:00
### Functions
2014-10-18 20:12:02 +04:00
2014-12-16 17:13:40 +03:00
* `$.material.init()` - shortcut to run all the following commands:
* `$.material.ripples()` will apply ripples.js to the default elements.
* `$.material.input()` will enable the MD style to the text inputs, and other kind of inputs (number, email, file etc).
* `$.material.checkbox():` will enable the MD style to the checkboxes (remember to follow the markup guidelines explained in the [Inputs section](#inputs).
* `$.material.radio():` will enable the MD style to the checkboxes (remember to follow the markup guidelines explained in the Inputs section.
2014-10-18 20:12:02 +04:00
### Apply only to specific elements
2014-10-18 20:12:02 +04:00
Every function expects an optional value that will be used as a selector for the function; for example,
`$.material.ripples("#selector, #foobar")` will apply Ripples.js only to `#selector` and `#foobar`.
2014-10-28 14:39:33 +03:00
The functions that allows an optional selector are `$.material.ripples`, `$.material.input`, `$.material.checkbox` and `$.material.radio`.
You can even override the default values using the `$.material.options` function. The default values are:
2014-10-28 14:39:33 +03:00
2015-11-19 01:53:08 +03:00
```javascript
2015-11-19 01:55:30 +03:00
$.material.options = {
"withRipples": ".btn:not(.btn-link), .card-image, .navbar a:not(.withoutripple), .nav-tabs a:not(.withoutripple), .withripple",
"inputElements": "input.form-control, textarea.form-control, select.form-control",
"checkboxElements": ".checkbox > label > input[type=checkbox]",
"radioElements": ".radio > label > input[type=radio]"
}
2015-11-19 01:53:08 +03:00
```
2014-10-28 14:39:33 +03:00
2014-10-19 21:49:34 +04:00
### Arrive.js support
2014-10-18 20:12:02 +04:00
If you need to dynamically add elements to your DOM then you may need to include `Arrive.js` before `Material.js`. This will automatically apply `material.js` to every new element added via JavaScript.
2014-08-22 17:04:38 +04:00
## Plugins
2014-08-21 11:48:39 +04:00
2014-10-03 17:15:42 +04:00
Material Design for Bootstrap comes with styling support for various external scripts:
2014-08-21 11:48:39 +04:00
### SnackbarJS
Create snackbars and toasts with the [SnackbarJS plugin](https://github.com/FezVrasta/snackbarjs). The default toast style is the squared one (snackbar style). If you like to use the rounded style (toast style), please add the `toast` class to the `style` option of SnackbarJS.
2014-08-21 11:48:39 +04:00
### RipplesJS
This is part of the Material Design for Bootstrap project and is a plain JavaScript script which creates the ripple effect when clicking on the specified elements.
At the moment RipplesJS does not have its own repository but it will probably have one in the future.
2014-12-18 14:56:25 +03:00
You may want to set a custom color to the ripples of a specific element, to do so write:
2015-11-19 01:53:08 +03:00
```html
2015-11-19 01:55:30 +03:00
<button class="btn btn-default" data-ripple-color="#F0F0F0">Custom ripple</button>
2015-11-19 01:53:08 +03:00
```
2014-12-18 14:56:25 +03:00
2014-08-25 19:14:52 +04:00
### noUiSlider
2014-09-07 19:13:34 +04:00
Make cross-browser sliders and get them styled with Material Design thanks to the support provided by this theme.
Read more about [noUiSlider here](http://refreshless.com/nouislider/).
2014-08-25 19:14:52 +04:00
2015-01-06 12:58:26 +03:00
### Dropdown.js
Finally a dropdown plugin that transforms select inputs in nice dropdowns and does not drive you crazy.
Read more about [Dropdown.js here](https://github.com/FezVrasta/dropdown.js).
2014-10-03 17:15:42 +04:00
### Selectize.js
Transform select and multi-select inputs into advanced text inputs. Material Design for BS provides a full replacement of the plugin's CSS, so don't include it.
Read more about [selectize.js](http://brianreavis.github.io/selectize.js/).
2014-10-03 17:15:42 +04:00
2015-03-18 17:50:09 +03:00
### Bootstrap Material Datepicker
A Material Design datepicker created to be used with Material Design for Bootstrap.
Read more about [Bootstrap Material Datepicker](https://github.com/T00rk/bootstrap-material-datepicker)
## Compatibility
2014-08-21 11:48:39 +04:00
Currently, Material Design for Bootstrap supports Google Chrome (tested v37+), Mozilla Firefox (tested 30+), and Internet Explorer (tested 11+). Mobile browsers are not currently tested but they may work.
## License
[MIT License](LICENSE.md)