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

Side by Side Diff: chrome/browser/resources/md_history/history.html

Issue 2577923002: MD History: Use default pointer cursor on all non-interactive elements (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
9 9
10 <style> 10 <style>
11 html, 11 html,
12 body { 12 body {
13 height: 100%; 13 height: 100%;
14 margin: 0; 14 margin: 0;
15 } 15 }
16 16
17 body { 17 body {
18 background: var(--md-background-color); 18 background: var(--md-background-color);
19 cursor: default;
19 } 20 }
20 21
21 /* Minimal styling required to display app shim. */ 22 /* Minimal styling required to display app shim. */
22 .loading history-app { 23 .loading history-app {
23 visibility: hidden; 24 visibility: hidden;
24 } 25 }
25 26
26 #app-shim { 27 #app-shim {
27 display: none; 28 display: none;
28 } 29 }
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 <link rel="import" href="chrome://resources/html/util.html"> 83 <link rel="import" href="chrome://resources/html/util.html">
83 <link rel="import" href="chrome://resources/html/load_time_data.html"> 84 <link rel="import" href="chrome://resources/html/load_time_data.html">
84 <link rel="import" href="chrome://history/constants.html"> 85 <link rel="import" href="chrome://history/constants.html">
85 <script src="chrome://history/strings.js"></script> 86 <script src="chrome://history/strings.js"></script>
86 <script src="chrome://history/history.js"></script> 87 <script src="chrome://history/history.js"></script>
87 88
88 <link rel="import" href="chrome://history/app.html" async id="bundle"> 89 <link rel="import" href="chrome://history/app.html" async id="bundle">
89 </body> 90 </body>
90 91
91 </html> 92 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698