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

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

Issue 2420583003: [MD History] Disable clicks in the date header of cards. (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 3210 matching lines...) Expand 10 before | Expand all | Expand 10 after
3221 :host([is-card-start][is-card-end]) #background { 3221 :host([is-card-start][is-card-end]) #background {
3222 border-radius: 2px; 3222 border-radius: 2px;
3223 } 3223 }
3224 3224
3225 </style> 3225 </style>
3226 3226
3227 <div id="main-container"> 3227 <div id="main-container">
3228 <div id="background-clip"> 3228 <div id="background-clip">
3229 <div id="background"></div> 3229 <div id="background"></div>
3230 </div> 3230 </div>
3231 <div id="date-accessed" class="card-title"> 3231 <div id="date-accessed" class="card-title" on-mousedown="onTitleMousedown_ ">
3232 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] 3232 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]]
3233 </div> 3233 </div>
3234 <div id="item-container"> 3234 <div id="item-container">
3235 <button is="paper-icon-button-light" id="checkbox" on-mousedown="onCheck boxMousedown_" on-click="onCheckboxSelected_" disabled="[[selectionNotAllowed_() ]]" role="checkbox" aria-checked$="[[getAriaChecked_(selected)]]" aria-label$="[ [getEntrySummary_(item)]]"> 3235 <button is="paper-icon-button-light" id="checkbox" on-mousedown="onCheck boxMousedown_" on-click="onCheckboxSelected_" disabled="[[selectionNotAllowed_() ]]" role="checkbox" aria-checked$="[[getAriaChecked_(selected)]]" aria-label$="[ [getEntrySummary_(item)]]">
3236 <div id="checkmark"></div> 3236 <div id="checkmark"></div>
3237 </button> 3237 </button>
3238 <span id="time-accessed">[[item.readableTimestamp]]</span> 3238 <span id="time-accessed">[[item.readableTimestamp]]</span>
3239 <div class="website-icon" id="icon"></div> 3239 <div class="website-icon" id="icon"></div>
3240 <div id="title-and-domain"> 3240 <div id="title-and-domain">
3241 <a href="[[item.url]]" id="title" class="website-title" title="[[item. title]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_"> 3241 <a href="[[item.url]]" id="title" class="website-title" title="[[item. title]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_">
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
3943 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer=""> 3943 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer="">
3944 </history-side-bar> 3944 </history-side-bar>
3945 </app-drawer> 3945 </app-drawer>
3946 </template> 3946 </template>
3947 3947
3948 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 3948 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
3949 </iron-media-query> 3949 </iron-media-query>
3950 </template> 3950 </template>
3951 </dom-module> 3951 </dom-module>
3952 <script src="app.crisper.js"></script></body></html> 3952 <script src="app.crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698