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

Unified Diff: chrome/browser/resources/md_history/history_item.html

Issue 2097003002: MD History: Remove bookmark when clicking bookmark star (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add event listener to remove all bookmark stars Created 4 years, 6 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/history_item.html
diff --git a/chrome/browser/resources/md_history/history_item.html b/chrome/browser/resources/md_history/history_item.html
index 17d4c14a7ae2331e1ef35bca2db94cbe70029d07..da7a4185a12d9c08c129237d5b9755017fb58aa5 100644
--- a/chrome/browser/resources/md_history/history_item.html
+++ b/chrome/browser/resources/md_history/history_item.html
@@ -111,9 +111,9 @@
-webkit-margin-end: 10px;
-webkit-margin-start: 20px;
color: rgb(68, 136, 255);
- height: 16px;
+ height: 32px;
visibility: hidden;
- width: 16px;
+ width: 32px;
}
:host([starred]) #bookmark-star {
@@ -143,7 +143,9 @@
</a>
<span id="domain">[[item.domain]]</span>
</div>
- <iron-icon icon="cr:star" id="bookmark-star"></iron-icon>
+ <paper-icon-button icon="cr:star" id="bookmark-star"
tsergeant 2016/06/30 01:41:10 We use paper-icon-button-light instead of paper-ic
lshang 2016/07/01 01:15:16 Done.
+ title="$i18n{removeBookmark}" on-tap="onRemoveBookmarkTap_">
+ </paper-icon-button>
<button is="paper-icon-button-light" id="menu-button"
on-tap="onMenuButtonTap_">
<iron-icon icon="cr:more-vert"></iron-icon>

Powered by Google App Engine
This is Rietveld 408576698