SHARE
TWEET

Untitled

a guest Dec 4th, 2014 156 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!doctype html>
  2. <html>
  3. <head>
  4.   <title>core-header-panel bug</title>
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  6.   <meta name="mobile-web-app-capable" content="yes">
  7.   <meta name="apple-mobile-web-app-capable" content="yes">
  8.   <script src="bower_components/webcomponentsjs/webcomponents.js"></script>
  9.   <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  10.   <link rel="import" href="bower_components/core-animated-pages/core-animated-pages.html">
  11.   <link rel="import" href="bower_components/font-roboto/roboto.html">
  12.   <link rel="import" href="bower_components/core-icon/core-icon.html">
  13.   <link rel="import" href="bower_components/paper-icon-button/paper-icon-button.html">
  14.   <link rel="import" href="bower_components/core-drawer-panel/core-drawer-panel.html">
  15.   <style>
  16.     body,html{
  17.       font-family: 'RobotoDraft', sans-serif;
  18.     }
  19.  
  20.     core-header-panel {
  21.       height: 400px;
  22.     }
  23.  
  24.     .core-header {
  25.       height: 60px;
  26.       line-height: 60px;
  27.       font-size: 18px;
  28.       background-color: #4F7DC9;
  29.       color: #FFF;
  30.       transition: height 0.6s;
  31.     }
  32.    
  33.     .core-header.tall {
  34.       height: 180px;
  35.     }
  36.  
  37.     .content {
  38.       height: 2000px;
  39.       background: linear-gradient(rgb(214, 227, 231), lightblue);
  40.     }
  41.   </style>
  42. </head>
  43. <body fullbleed>
  44. <template is="auto-binding">
  45.   <core-animated-pages flex selected="0" transitions="hero-transition cross-fade-all">
  46.     <section flex>
  47.       <core-header-panel mode="waterfall-tall">
  48.         <core-toolbar class="core-header" justify="end">
  49.           <paper-icon-button icon="search"></paper-icon-button>
  50.           <input type="search" value="Test"/>
  51.            
  52.           <div class="bottom indent">
  53.             <div flex>Little test</div>
  54.           </div>
  55.         </core-toolbar>
  56.         <div class="content">
  57.           <div>Content</div>
  58.         </div>
  59.       </core-header-panel>
  60.     </section>
  61.   </core-animated-pages>
  62. </template>
  63. </body>
  64. </html>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top