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

Unified Diff: chrome/browser/resources/cleanup_tool/toolbar.html

Issue 2784653004: Cleanup Tool WebUI: Add HTML content and styling with dummy JS (Closed)
Patch Set: Move build include to is_win section Created 3 years, 8 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/resources/cleanup_tool/main.html ('k') | chrome/browser/resources/cleanup_tool/toolbar.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/cleanup_tool/toolbar.html
diff --git a/chrome/browser/resources/cleanup_tool/toolbar.html b/chrome/browser/resources/cleanup_tool/toolbar.html
new file mode 100644
index 0000000000000000000000000000000000000000..7180a88bb1723c24245b5ee3b9c3af933606006e
--- /dev/null
+++ b/chrome/browser/resources/cleanup_tool/toolbar.html
@@ -0,0 +1,26 @@
+<link rel="import" href="chrome://resources/html/assert.html">
+<link rel="import" href="chrome://resources/html/cr.html">
+<link rel="import" href="chrome://resources/html/polymer.html">
+
+<dom-module id="cleanup-tool-toolbar">
+ <template>
+ <style>
+ :host {
+ align-items: center;
+ background: var(--md-toolbar-color);
+ color: white;
+ display: flex;
+ min-height: 56px;
+ }
+
+ #page-title {
+ -webkit-padding-start: 18px;
+ font-size: 123%;
+ overflow: hidden;
+ white-space: nowrap;
+ }
+ </style>
+ <div id="page-title">$i18n{title}</div>
+ </template>
+ <script src="chrome://cleanup/toolbar.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/cleanup_tool/main.html ('k') | chrome/browser/resources/cleanup_tool/toolbar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698