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

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

Issue 1910343003: MD History: Fix toolbar selected color (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« 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 i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang: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>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 .loading #loading-toolbar { 55 .loading #loading-toolbar {
56 -webkit-padding-start: 24px; 56 -webkit-padding-start: 24px;
57 align-items: center; 57 align-items: center;
58 color: #fff; 58 color: #fff;
59 flex-direction: row; 59 flex-direction: row;
60 font-weight: 400; 60 font-weight: 400;
61 height: 56px; 61 height: 56px;
62 } 62 }
63 63
64 #toolbar, 64 history-toolbar,
65 .loading #loading-toolbar { 65 .loading #loading-toolbar {
66 background: var(--md-toolbar-color); 66 background: var(--md-toolbar-color);
67 } 67 }
68 68
69 .loading #loading-message { 69 .loading #loading-message {
70 align-items: center; 70 align-items: center;
71 color: #b4b4b4; 71 color: #b4b4b4;
72 flex: 1; 72 flex: 1;
73 font-weight: 500; 73 font-weight: 500;
74 justify-content: center; 74 justify-content: center;
(...skipping 25 matching lines...) Expand all
100 100
101 <!-- 101 <!--
102 Prepare strings and perform i18n substitutions. 102 Prepare strings and perform i18n substitutions.
103 TODO(tsergeant): Remove once we are fully converted to 103 TODO(tsergeant): Remove once we are fully converted to
104 ReplaceTemplateExpressions. It is currently only used for the <html> tag. 104 ReplaceTemplateExpressions. It is currently only used for the <html> tag.
105 --> 105 -->
106 <link rel="import" href="chrome://resources/html/i18n_template.html" async> 106 <link rel="import" href="chrome://resources/html/i18n_template.html" async>
107 </body> 107 </body>
108 108
109 </html> 109 </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