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

Unified Diff: chrome/browser/resources/md_bookmarks/item.html

Issue 2639453002: [MD Bookmarks] Add Select for Bookmarks. (Closed)
Patch Set: restructure Created 3 years, 11 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_bookmarks/item.html
diff --git a/chrome/browser/resources/md_bookmarks/item.html b/chrome/browser/resources/md_bookmarks/item.html
index 56a27dc6d9f78581e81e00f0d07ce2e2349f9c2c..a9a43eb5e88d4543b12304f5606888eb76832de5 100644
--- a/chrome/browser/resources/md_bookmarks/item.html
+++ b/chrome/browser/resources/md_bookmarks/item.html
@@ -10,6 +10,7 @@
<style include="shared-style">
:host {
-webkit-padding-start: 20px;
+ -webkit-user-select: none;
align-items: center;
display: flex;
flex-direction: row;
@@ -20,6 +21,10 @@
border-bottom: var(--cr-separator-line);
}
+ :host([is-selected-item]) {
+ background-color: rgb(225, 235, 253);
+ }
+
#website-title {
color: var(--primary-text-color);
cursor: pointer;
@@ -62,7 +67,7 @@
[[item.title]]
</div>
<button is="paper-icon-button-light" class="more-vert-button"
- on-tap="onMenuButtonOpenTap_">
+ on-click="onMenuButtonOpenClick_">
<div></div>
<div></div>
<div></div>

Powered by Google App Engine
This is Rietveld 408576698