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

Side by Side Diff: chrome/browser/resources/md_bookmarks/bookmarks.html

Issue 2639893006: [MD Bookmarks] Add lines between items and no search results message. (Closed)
Patch Set: Switch to evaluate last item with :last-of-type Created 3 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf8"> 4 <meta charset="utf8">
5 <title>$i18n{title}</title> 5 <title>$i18n{title}</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
7 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 7 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
8 <link rel="import" href="chrome://bookmarks/app.html"> 8 <link rel="import" href="chrome://bookmarks/app.html">
9 <link rel="import" href="chrome://resources/html/load_time_data.html">
9 <style> 10 <style>
10 html, 11 html,
11 body { 12 body {
12 background: var(--md-background-color); 13 background: var(--md-background-color);
13 height: 100%; 14 height: 100%;
14 margin: 0; 15 margin: 0;
15 } 16 }
16 </style> 17 </style>
17 </head> 18 </head>
18 <body> 19 <body>
19 <bookmarks-app></bookmarks-app> 20 <bookmarks-app></bookmarks-app>
21 <script src="chrome://bookmarks/strings.js"></script>
20 </body> 22 </body>
21 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698