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

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

Issue 2864433002: [MD Bookmarks] Add hover border to sidebar splitter. (Closed)
Patch Set: address comments Created 3 years, 7 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
« no previous file with comments | « no previous file | ui/webui/resources/js/cr/ui/splitter.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_bookmarks/app.html
diff --git a/chrome/browser/resources/md_bookmarks/app.html b/chrome/browser/resources/md_bookmarks/app.html
index faea7531ee431868543828852ee69046dfbf2d3b..115c11df1f47f6d051c0a6d6b63dc12c1e577110 100644
--- a/chrome/browser/resources/md_bookmarks/app.html
+++ b/chrome/browser/resources/md_bookmarks/app.html
@@ -30,8 +30,17 @@
}
#splitter {
+ box-sizing: border-box;
cursor: e-resize;
flex: 0 0 var(--splitter-width);
+ opacity: 0;
+ }
+
+ #splitter:hover,
+ #splitter.splitter-active {
+ -webkit-border-start: 1px solid rgba(0, 0, 0, 0.1);
+ opacity: 1;
+ transition: opacity 100ms ease-out;
}
:host-context([dir='rtl']) #splitter {
« no previous file with comments | « no previous file | ui/webui/resources/js/cr/ui/splitter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698