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

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

Issue 2970793002: MD Bookmarks: Always use a two-way arrow cursor for resizing the sidebar (Closed)
Patch Set: Created 3 years, 5 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 | « chrome/browser/browser_resources.grd ('k') | no next file » | 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 7d01735cb29ed412b44fb544fbdf222283fe8d5c..577ede515fbbf3c57a8db62416479e80b08859b5 100644
--- a/chrome/browser/resources/md_bookmarks/app.html
+++ b/chrome/browser/resources/md_bookmarks/app.html
@@ -34,7 +34,11 @@
#splitter {
box-sizing: border-box;
+ cursor: col-resize;
+<if expr="is_win">
+ /* Unlike other platforms, e-resize is a two-way arrow on Windows. */
cursor: e-resize;
+</if>
flex: 0 0 var(--splitter-width);
opacity: 0;
}
@@ -46,10 +50,6 @@
transition: opacity 100ms ease-out;
}
- :host-context([dir='rtl']) #splitter {
- cursor: w-resize;
- }
-
#sidebar {
-webkit-padding-start: 3px;
display: block;
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698