UNPKG

@haxtheweb/haxcms-nodejs

Version:

HAXcms single and multisite nodejs server, api, and administration

59 lines (51 loc) 1.71 kB
/** @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ import"../../polymer/polymer-legacy.js";import"../../iron-flex-layout/iron-flex-layout.js";import{Polymer as t}from"../../polymer/lib/legacy/polymer-fn.js";import{html as o}from"../../polymer/lib/utils/html-tag.js";t({_template:o` <style> :host { @apply --layout-horizontal; @apply --layout-center; position: relative; height: 64px; padding: 0 16px; pointer-events: none; font-size: var(--app-toolbar-font-size, 20px); } :host ::slotted(*) { pointer-events: auto; } :host ::slotted(paper-icon-button) { /* paper-icon-button/issues/33 */ font-size: 0; } :host ::slotted([main-title]), :host ::slotted([condensed-title]) { pointer-events: none; @apply --layout-flex; } :host ::slotted([bottom-item]) { position: absolute; right: 0; bottom: 0; left: 0; } :host ::slotted([top-item]) { position: absolute; top: 0; right: 0; left: 0; } :host ::slotted([spacer]) { margin-left: 64px; } </style> <slot></slot> `,is:"app-toolbar"});