| OLD | NEW |
| 1 <html><head><!-- | 1 <html><head><!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><!-- | 9 --><!-- |
| 10 @license | 10 @license |
| (...skipping 1831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1842 | 1842 |
| 1843 paper-spinner-lite[active] { | 1843 paper-spinner-lite[active] { |
| 1844 opacity: 1; | 1844 opacity: 1; |
| 1845 } | 1845 } |
| 1846 | 1846 |
| 1847 #prompt, paper-spinner-lite { | 1847 #prompt, paper-spinner-lite { |
| 1848 transition: opacity 200ms; | 1848 transition: opacity 200ms; |
| 1849 } | 1849 } |
| 1850 | 1850 |
| 1851 #searchTerm { | 1851 #searchTerm { |
| 1852 -webkit-margin-start: 2px; | 1852 -webkit-font-smoothing: antialiased; |
| 1853 -webkit-margin-start: 2px; |
| 1853 flex: 1; | 1854 flex: 1; |
| 1854 line-height: 185%; | 1855 line-height: 185%; |
| 1855 position: relative; | 1856 position: relative; |
| 1856 } | 1857 } |
| 1857 | 1858 |
| 1858 label { | 1859 label { |
| 1859 bottom: 0; | 1860 bottom: 0; |
| 1860 cursor: text; | 1861 cursor: text; |
| 1861 left: 0; | 1862 left: 0; |
| 1863 overflow: hidden; |
| 1862 position: absolute; | 1864 position: absolute; |
| 1863 right: 0; | 1865 right: 0; |
| 1864 top: 0; | 1866 top: 0; |
| 1867 white-space: nowrap; |
| 1865 } | 1868 } |
| 1866 | 1869 |
| 1867 :host([has-search-text_]) label { | 1870 :host([has-search-text_]) label { |
| 1868 visibility: hidden; | 1871 visibility: hidden; |
| 1869 } | 1872 } |
| 1870 | 1873 |
| 1871 input { | 1874 input { |
| 1872 -webkit-appearance: none; | 1875 -webkit-appearance: none; |
| 1873 background: transparent; | 1876 background: transparent; |
| 1874 border: none; | 1877 border: none; |
| 1875 color: white; | 1878 color: white; |
| 1876 font-family: inherit; | 1879 font: inherit; |
| 1877 outline: none; | 1880 outline: none; |
| 1878 padding: 0; | 1881 padding: 0; |
| 1882 position: relative; |
| 1879 width: 100%; | 1883 width: 100%; |
| 1880 } | 1884 } |
| 1881 | 1885 |
| 1882 input[type='search']::-webkit-search-decoration, input[type='search']::-webkit-s
earch-cancel-button, input[type='search']::-webkit-search-results-button { | 1886 input[type='search']::-webkit-search-decoration, input[type='search']::-webkit-s
earch-cancel-button, input[type='search']::-webkit-search-results-button { |
| 1883 -webkit-appearance: none; | 1887 -webkit-appearance: none; |
| 1884 } | 1888 } |
| 1885 | 1889 |
| 1886 :host(:not([narrow])) { | 1890 :host(:not([narrow])) { |
| 1887 -webkit-padding-end: 0; | 1891 -webkit-padding-end: 0; |
| 1888 background: rgba(0, 0, 0, 0.22); | 1892 background: rgba(0, 0, 0, 0.22); |
| (...skipping 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3762 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}"
show-footer="[[showSidebarFooter]]" drawer=""> | 3766 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}"
show-footer="[[showSidebarFooter]]" drawer=""> |
| 3763 </history-side-bar> | 3767 </history-side-bar> |
| 3764 </app-drawer> | 3768 </app-drawer> |
| 3765 </template> | 3769 </template> |
| 3766 | 3770 |
| 3767 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> | 3771 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> |
| 3768 </iron-media-query> | 3772 </iron-media-query> |
| 3769 </template> | 3773 </template> |
| 3770 </dom-module> | 3774 </dom-module> |
| 3771 <script src="app.crisper.js"></script></body></html> | 3775 <script src="app.crisper.js"></script></body></html> |
| OLD | NEW |