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

Side by Side Diff: chrome/browser/resources/md_history/history_toolbar.html

Issue 1729263005: MD History: Display synced tabs history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdh_shared_styles
Patch Set: add tests Created 4 years, 10 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 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html"> 5 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html">
6 <link rel="import" href="chrome://history/shared_style.html"> 6 <link rel="import" href="chrome://history/shared_style.html">
7 7
8 <dom-module id="history-toolbar"> 8 <dom-module id="history-toolbar">
9 <template> 9 <template>
10 <style include="shared-style"></style> 10 <style include="shared-style"></style>
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 } 75 }
76 76
77 #back-padding { 77 #back-padding {
78 flex: 1 1 0; 78 flex: 1 1 0;
79 } 79 }
80 80
81 [hidden] { 81 [hidden] {
82 display: none !important; 82 display: none !important;
83 } 83 }
84 </style> 84 </style>
85
86 <div id="toolbar-container"> 85 <div id="toolbar-container">
87 <div id="main-content" hidden$="{{itemsSelected_}}"> 86 <div id="main-content" hidden$="{{itemsSelected_}}">
88 <h1 i18n-content="title" id="title"></h1> 87 <h1 i18n-content="title" id="title"></h1>
89 <cr-search-field id="search-input" 88 <cr-search-field id="search-input"
90 i18n-values="label:search;clear-label:clearSearch"> 89 i18n-values="label:search;clear-label:clearSearch">
91 </cr-search-field> 90 </cr-search-field>
92 </div> 91 </div>
93 92
94 <div id="items" hidden$="{{!itemsSelected_}}"> 93 <div id="items" hidden$="{{!itemsSelected_}}">
95 <paper-icon-button icon="clear" id="cancel-icon-button" 94 <paper-icon-button icon="clear" id="cancel-icon-button"
(...skipping 12 matching lines...) Expand all
108 <paper-button on-tap="onClearBrowsingDataTap_" 107 <paper-button on-tap="onClearBrowsingDataTap_"
109 i18n-content="clearBrowsingData" 108 i18n-content="clearBrowsingData"
110 id="clear-browsing-data-button"> 109 id="clear-browsing-data-button">
111 </paper-button> 110 </paper-button>
112 </div> 111 </div>
113 <div id="back-padding"></div> 112 <div id="back-padding"></div>
114 </div> 113 </div>
115 </template> 114 </template>
116 <script src="chrome://history/history_toolbar.js"></script> 115 <script src="chrome://history/history_toolbar.js"></script>
117 </dom-module> 116 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698