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

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

Issue 2268073002: MD History: Remove usage of iron-flex-layout from MD History (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/history_toolbar.html
diff --git a/chrome/browser/resources/md_history/history_toolbar.html b/chrome/browser/resources/md_history/history_toolbar.html
index 47e6401229c1fab983b0f377c393d8676cd37645..736792b3b87f0c0bbc1e4ecf262e0440c0ed3c8e 100644
--- a/chrome/browser/resources/md_history/history_toolbar.html
+++ b/chrome/browser/resources/md_history/history_toolbar.html
@@ -1,5 +1,4 @@
<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.html">
@@ -23,8 +22,8 @@
#overlay-buttons,
#overlay-wrapper,
#toolbar-container {
- @apply(--layout-center);
- @apply(--layout-horizontal);
+ align-items: center;
+ display: flex;
width: 100%;
}
@@ -59,7 +58,7 @@
}
#number-selected {
- @apply(--layout-flex);
+ flex: 1;
}
#cancel-icon-button {
@@ -89,8 +88,8 @@
}
#grouped-buttons-container {
- @apply(--layout-center);
- @apply(--layout-horizontal);
+ align-items: center;
+ display: flex;
}
#grouped-range-buttons {
@@ -98,11 +97,11 @@
}
#grouped-nav-container {
- @apply(--layout-center);
- @apply(--layout-end-justified);
- @apply(--layout-flex);
- @apply(--layout-horizontal);
-webkit-margin-end: 24px;
+ align-items: center;
+ display: flex;
+ flex: 1;
+ justify-content: flex-end;
overflow: hidden;
transition: opacity 150ms;
}
« no previous file with comments | « chrome/browser/resources/md_history/history_item.html ('k') | chrome/browser/resources/md_history/shared_style.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698