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

Unified Diff: chrome/browser/resources/bookmark_manager/css/bmm.css

Issue 2444373003: Adding/renaming a folder in the bookmark manager should not hide the icon. (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/bookmark_manager/css/bmm.css
diff --git a/chrome/browser/resources/bookmark_manager/css/bmm.css b/chrome/browser/resources/bookmark_manager/css/bmm.css
index 0f12426e9d8415cd91d335d03d0956e9491fabbc..d34d96ec50d84d2527154ec14690c3d6de3b90a9 100644
--- a/chrome/browser/resources/bookmark_manager/css/bmm.css
+++ b/chrome/browser/resources/bookmark_manager/css/bmm.css
@@ -56,6 +56,7 @@ list .label {
list .label-img-wrapper {
display: inline-block; /* Makes the image start-align in RTL. */
width: 20px;
+ z-index: -1;
Peter Kasting 2016/10/26 01:49:57 Without this, the input field, which has a -webkit
Dan Beam 2016/10/27 03:56:16 Acknowledged.
}
<if expr="not is_macosx and not is_ios">
@@ -135,7 +136,7 @@ html[dir=rtl] list > * > button {
/* Edit mode */
-list [editing] .label input,
+list [editing] .label-text input,
Peter Kasting 2016/10/26 01:49:57 This change should have no effect, nor should the
Dan Beam 2016/10/27 03:56:16 Acknowledged.
list [editing] .url input {
-webkit-margin-end: 4px;
-webkit-margin-start: -4px;
@@ -162,7 +163,7 @@ list [editing] .url input {
}
<if expr="is_macosx">
-list .label input,
+list .label-text input,
list .url input {
outline: none;
}
@@ -172,7 +173,7 @@ list > [editing] {
overflow: visible;
}
-list [editing] .label,
+list [editing] .label-text,
Peter Kasting 2016/10/26 01:49:57 I made this change speculatively. Due to https://
Dan Beam 2016/10/27 03:56:17 ¯\_(ツ)_/¯
Peter Kasting 2016/10/27 06:00:26 :( I'm inclined to rip out the overflow fiddling
Dan Beam 2016/10/27 17:27:55 i mean, i could find out, but this code is basical
list [editing] .url,
list [editing] > * {
overflow: visible;

Powered by Google App Engine
This is Rietveld 408576698