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

Unified Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2275453002: MD WebUI: Fix misaligned spinner in narrow-mode cr-toolbar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/app.vulcanized.html
diff --git a/chrome/browser/resources/md_history/app.vulcanized.html b/chrome/browser/resources/md_history/app.vulcanized.html
index dbf6ce623ab8923433c8727b854ba8a597ce4142..3e2da6d17e429a7ce15ef901bf1e23c47f84d454 100644
--- a/chrome/browser/resources/md_history/app.vulcanized.html
+++ b/chrome/browser/resources/md_history/app.vulcanized.html
@@ -2355,11 +2355,15 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
* opening/closing. -webkit-margin-start is not animatable, so we have to
* use regular margin-left/right instead.
*/
- :host-context([dir=ltr]):host([narrow][showing-search]) #icon {
+ :host-context([dir=ltr]):host([narrow][showing-search]) #icon,
+ :host-context([dir=ltr]):host([narrow][showing-search]) paper-spinner-lite
+ {
margin-left: 18px;
}
- :host-context([dir=rtl]):host([narrow][showing-search]) #icon {
+ :host-context([dir=rtl]):host([narrow][showing-search]) #icon,
+ :host-context([dir=rtl]):host([narrow][showing-search]) paper-spinner-lite
+ {
margin-right: 18px;
}
</style>

Powered by Google App Engine
This is Rietveld 408576698