Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2370653002: MD WebUI: Remove <style no-process> from Polymer (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 3730 matching lines...) Expand 10 before | Expand all | Expand 10 after
3741 </a> 3741 </a>
3742 <div id="footer" hidden="[[!showFooter]]"> 3742 <div id="footer" hidden="[[!showFooter]]">
3743 <div class="separator"></div> 3743 <div class="separator"></div>
3744 <div id="footer-text">$i18nRaw{sidebarFooter}</div> 3744 <div id="footer-text">$i18nRaw{sidebarFooter}</div>
3745 </div> 3745 </div>
3746 </iron-selector> 3746 </iron-selector>
3747 </template> 3747 </template>
3748 </dom-module> 3748 </dom-module>
3749 </div><dom-module id="history-app" css-build="shadow"> 3749 </div><dom-module id="history-app" css-build="shadow">
3750 <template> 3750 <template>
3751 3751 <style scope="history-app">[hidden] {
3752 <style scope="history-app">history-toolbar {
3753 background: var(--md-toolbar-color);
3754 }
3755
3756 [hidden] {
3757 display: none !important; 3752 display: none !important;
3758 } 3753 }
3759 3754
3760 .card-title { 3755 .card-title {
3761 align-items: center; 3756 align-items: center;
3762 border-bottom: 1px solid var(--card-border-color); 3757 border-bottom: 1px solid var(--card-border-color);
3763 border-radius: 2px 2px 0 0; 3758 border-radius: 2px 2px 0 0;
3764 color: var(--primary-text-color); 3759 color: var(--primary-text-color);
3765 display: flex; 3760 display: flex;
3766 font-size: 14px; 3761 font-size: 14px;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
3834 pointer-events: none; 3829 pointer-events: none;
3835 transform: scale(0.8); 3830 transform: scale(0.8);
3836 } 3831 }
3837 3832
3838 :host { 3833 :host {
3839 display: block; 3834 display: block;
3840 height: 100%; 3835 height: 100%;
3841 overflow: hidden; 3836 overflow: hidden;
3842 } 3837 }
3843 3838
3839 history-toolbar {
3840 background: var(--md-toolbar-color);
3841 }
3842
3844 #main-container { 3843 #main-container {
3845 height: calc(100% - var(--toolbar-height)); 3844 height: calc(100% - var(--toolbar-height));
3846 position: relative; 3845 position: relative;
3847 } 3846 }
3848 3847
3849 :host([grouped_]) #main-container { 3848 :host([grouped_]) #main-container {
3850 height: calc(100% - var(--toolbar-grouped-height)); 3849 height: calc(100% - var(--toolbar-grouped-height));
3851 } 3850 }
3852 3851
3853 #content-side-bar { 3852 #content-side-bar {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
3927 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer=""> 3926 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer="">
3928 </history-side-bar> 3927 </history-side-bar>
3929 </app-drawer> 3928 </app-drawer>
3930 </template> 3929 </template>
3931 3930
3932 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 3931 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
3933 </iron-media-query> 3932 </iron-media-query>
3934 </template> 3933 </template>
3935 </dom-module> 3934 </dom-module>
3936 <script src="app.crisper.js"></script></body></html> 3935 <script src="app.crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698