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

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

Issue 2639453002: [MD Bookmarks] Add Select for Bookmarks. (Closed)
Patch Set: comment 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 a00cb8f24bf136fa970ab0270719169f412fc3eb..08259ad10230aa527534ac50bb8f99795d4eea4b 100644
--- a/chrome/browser/resources/md_bookmarks/item.html
+++ b/chrome/browser/resources/md_bookmarks/item.html
@@ -10,12 +10,17 @@
<style include="shared-style">
:host {
-webkit-padding-start: 20px;
+ -webkit-user-select: none;
align-items: center;
display: flex;
flex-direction: row;
height: 40px;
}
+ :host([is-selected]) {
+ background-color: rgb(216, 223, 240);
calamity 2017/01/17 06:12:22 Is this the right color? The spec says it should b
jiaxi 2017/01/20 04:51:08 Done.
+ }
+
#website-title {
color: var(--primary-text-color);
cursor: pointer;

Powered by Google App Engine
This is Rietveld 408576698