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

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

Issue 1572383006: MD History: Hook all elements into the page and add tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch
Patch Set: Rebase. Created 4 years, 11 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.html
diff --git a/chrome/browser/resources/md_history/history.html b/chrome/browser/resources/md_history/history.html
index a2af6fb18e788b27dc0f7c68020b520438cdfa78..29b8ba364581bcb4be422b9fb9a795b4995e89db 100644
--- a/chrome/browser/resources/md_history/history.html
+++ b/chrome/browser/resources/md_history/history.html
@@ -6,11 +6,44 @@
<link rel="stylesheet" href="chrome://resources/css/roboto.css">
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
+
+ <style>
+ html,
+ body {
+ height: 100%;
+ margin: 0;
+ }
+
+ body {
+ background: #f2f2f2;
+ display: flex;
+ flex-direction: column;
+ font-family: Roboto;
+ font-size: 13px;
+ }
+
+ #toolbar {
+ flex: 0 0 56px;
+ }
+
+ #history-card-manager {
+ flex: 1 0 0;
+ overflow: auto;
+ }
+ </style>
</head>
<body>
- <h1 i18n-content="title"></h1>
+ <history-toolbar class="paper-header" id="toolbar"></history-toolbar>
+ <history-card-manager id="history-card-manager"></history-card-manager>
+
<link rel="import" href="chrome://resources/html/polymer_config.html">
+ <link rel="import" href="chrome://resources/html/cr.html">
+ <link rel="import" href="chrome://resources/html/util.html">
+ <link rel="import" href="chrome://history/history_card_manager.html">
+ <link rel="import" href="chrome://history/history_toolbar.html">
+
+ <script src="history.js"></script>
<!-- Prepare strings and perform i18n substitutions. -->
<link rel="import" href="chrome://resources/html/load_time_data.html">
« no previous file with comments | « chrome/browser/resources/md_history/compiled_resources.gyp ('k') | chrome/browser/resources/md_history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698