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

Unified Diff: chrome/browser/resources/md_history/lazy_load.vulcanized.html

Issue 2394433002: [MD History] Make synced devices keyboard navigation consistent. (Closed)
Patch Set: rebase/address comments 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_history/lazy_load.vulcanized.html
diff --git a/chrome/browser/resources/md_history/lazy_load.vulcanized.html b/chrome/browser/resources/md_history/lazy_load.vulcanized.html
index a5b9dd2c8476e456a955bd1916df8c2140120c18..4e05fa7a986064a449e916800aa74dc129d7c074 100644
--- a/chrome/browser/resources/md_history/lazy_load.vulcanized.html
+++ b/chrome/browser/resources/md_history/lazy_load.vulcanized.html
@@ -726,14 +726,14 @@ button.more-vert-button div {
border-radius: 2px;
}
-#item-container {
+.item-container {
align-items: center;
display: flex;
margin: 0 20px;
min-height: var(--item-height);
}
-#window-separator {
+.window-separator {
background-color: var(--card-border-color);
height: 1px;
margin: 5px auto;
@@ -755,7 +755,7 @@ button.more-vert-button div {
<div></div>
<div></div>
</button>
- <button is="paper-icon-button-light" class="icon-button" title$="[[getCollapseTitle_(opened)]]">
+ <button is="paper-icon-button-light" class="icon-button" id="collapse-button" title$="[[getCollapseTitle_(opened)]]">
<iron-icon icon="[[getCollapseIcon_(opened)]]" id="dropdown-indicator">
</iron-icon>
</button>
@@ -765,13 +765,13 @@ button.more-vert-button div {
<iron-collapse opened="{{opened}}" id="collapse">
<div id="tab-item-list">
<template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list">
- <div id="item-container">
- <div id="icon" class="website-icon"></div>
+ <div class="item-container">
+ <div class="website-icon"></div>
<a href="[[tab.url]]" class="website-title" title="[[tab.title]]" on-click="openTab_" on-contextmenu="onLinkRightClick_">
<history-searched-label title="[[tab.title]]" search-term="[[searchTerm]]"></history-searched-label>
</a>
</div>
- <div id="window-separator" hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]">
+ <div class="window-separator" hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]">
</div>
</template>
</div>

Powered by Google App Engine
This is Rietveld 408576698