4 `paper-toolbar` is a horizontal bar containing items that can be used for
5 label, navigation, search and actions. The items place inside the
6 `paper-toolbar` are projected into a `class="horizontal center layout"` container inside of
7 `paper-toolbar`'s Shadow DOM. You can use flex attributes to control the items'
14 <paper-icon-button icon="menu" on-tap="{{menuAction}}"></paper-icon-button>
15 <div class="title">Title</div>
16 <paper-icon-button icon="more" on-tap="{{moreAction}}"></paper-icon-button>
20 `paper-toolbar` has a standard height, but can made be taller by setting `tall`
21 class on the `paper-toolbar`. This will make the toolbar 3x the normal height.
24 <paper-toolbar class="tall">
25 <paper-icon-button icon="menu"></paper-icon-button>
29 Apply `medium-tall` class to make the toolbar medium tall. This will make the
30 toolbar 2x the normal height.
33 <paper-toolbar class="medium-tall">
34 <paper-icon-button icon="menu"></paper-icon-button>
38 When `tall`, items can pin to either the top (default), middle or bottom. Use
39 `middle` class for middle content and `bottom` class for bottom content.
42 <paper-toolbar class="tall">
43 <paper-icon-button icon="menu"></paper-icon-button>
44 <div class="title middle">Middle Title</div>
45 <div class="title bottom">Bottom Title</div>
49 For `medium-tall` toolbar, the middle and bottom contents overlap and are
50 pinned to the bottom. But `middleJustify` and `bottomJustify` attributes are
51 still honored separately.
53 To make an element completely fit at the bottom of the toolbar, use `fit` along
57 <paper-toolbar class="tall">
58 <div id="progressBar" class="bottom fit"></div>