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

Unified Diff: chrome/browser/resources/md_history/history_item.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_item.html
diff --git a/chrome/browser/resources/md_history/history_item.html b/chrome/browser/resources/md_history/history_item.html
index e615b6a1ea2916d7bdb28b7661d785a2ea71d1a7..a501951e07c25c9e477cae746f31d66dd72b37bf 100644
--- a/chrome/browser/resources/md_history/history_item.html
+++ b/chrome/browser/resources/md_history/history_item.html
@@ -1,6 +1,5 @@
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<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/iron-icon/iron-icon.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-checkbox/paper-checkbox.html">
@@ -48,8 +47,8 @@
}
#item-container {
- @apply(--layout-center);
- @apply(--layout-horizontal);
+ align-items: center;
+ display: flex;
min-height: var(--item-height);
}
@@ -62,9 +61,9 @@
}
#title-and-domain {
- @apply(--layout-center);
- @apply(--layout-flex);
- @apply(--layout-horizontal);
+ align-items: center;
+ display: flex;
+ flex: 1;
height: var(--item-height);
overflow: hidden;
}
« no previous file with comments | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | chrome/browser/resources/md_history/history_toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698