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

Side by Side Diff: chrome/browser/resources/cleanup_tool/cleanup.html

Issue 2784653004: Cleanup Tool WebUI: Add HTML content and styling with dummy JS (Closed)
Patch Set: Port in review changes on now-deleted main.html to cleanup.html 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <html dir="${textdirection}" lang="${language}">
3 <head>
4 <meta name="google" value="notranslate">
5 <meta charset="utf-8">
6 <title>${title}</title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
9 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="strings.js"></script>
11
12 <style>
13 html {
14 background: var(--md-background-color);
15 }
16
17 body {
18 margin: 0;
19 }
20
21 :root {
22 --cleanup-card-margin: 25px;
23 --cleanup-card-width: 800px;
24 }
25 </style>
26 </head>
27
28 <body>
29 <cleanup-tool-toolbar></cleanup-tool-toolbar>
30 <cleanup-manager></cleanup-manager>
31 <link rel="import" href="chrome://resources/html/cr.html">
32 <link rel="import" href="chrome://resources/html/polymer.html">
33 <link rel="import" href="chrome://cleanup-tool/icons.html">
34 <link rel="import" href="chrome://cleanup-tool/manager.html">
35 <link rel="import" href="chrome://cleanup-tool/toolbar.html">
36 </body>
37
38 <script src="chrome://resources/js/i18n_template.js"></script>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698