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

Side by Side Diff: chrome/browser/resources/settings/settings.html

Issue 2082763002: MD Settings: make ugly appeal banner less ugly (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: right font-sizes, i.e. body != :root Created 4 years, 6 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 dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>$i18n{settings}</title> 5 <title>$i18n{settings}</title>
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="/i18n_setup.html"> 7 <link rel="import" href="/i18n_setup.html">
8 <link rel="import" href="/direction_delegate.html"> 8 <link rel="import" href="/direction_delegate.html">
9 <link rel="import" href="/settings_ui/settings_ui.html"> 9 <link rel="import" href="/settings_ui/settings_ui.html">
10 <link rel="import" href="/prefs/prefs.html"> 10 <link rel="import" href="/prefs/prefs.html">
11 <link rel="import" href="/settings_root_css.html"> 11 <link rel="import" href="/settings_root_css.html">
12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
13 </head> 13 </head>
14 <body> 14 <body>
15 15
16 <dom-module id="cr-settings"> 16 <dom-module id="cr-settings">
17 <template> 17 <template>
18 <style> 18 <style>
19 :host { 19 :host {
20 color: var(--paper-grey-800); 20 color: var(--paper-grey-800);
21 } 21 }
22 22
23 #appeal { 23 #appeal {
24 align-items: center; 24 align-items: center;
25 background: red; 25 background: rgb(123, 170, 247);
26 bottom: 0;
26 display: flex; 27 display: flex;
27 left: 0; 28 left: 0;
28 position: fixed; 29 position: fixed;
29 right: 0; 30 right: 0;
30 top: 0;
31 z-index: 9999; 31 z-index: 9999;
32 } 32 }
33 33
34 #request { 34 #request {
35 flex: 1; 35 flex: 1;
36 font-size: 1rem; 36 font-size: .8125rem;
37 font-weight: bold; 37 font-weight: bold;
38 padding: 12px 8px; 38 padding: 8px 24px;
39 } 39 }
40 40
41 #request h1 { 41 #request h1 {
42 font-size: 1.5rem; 42 font-size: 1rem;
43 margin: 0; 43 margin: 0;
44 } 44 }
45 45
46 #request a { 46 #request a {
47 color: rgb(100, 100, 255); 47 color: rgb(100, 100, 255);
48 } 48 }
49 49
50 #close { 50 #close {
51 padding: 20px; 51 padding: 20px;
52 } 52 }
(...skipping 13 matching lines...) Expand all
66 66
67 <settings-ui id="ui" prefs="{{prefs_}}"></settings-ui> 67 <settings-ui id="ui" prefs="{{prefs_}}"></settings-ui>
68 </template> 68 </template>
69 <script src="/settings.js"></script> 69 <script src="/settings.js"></script>
70 </dom-module> 70 </dom-module>
71 71
72 <cr-settings></cr-settings> 72 <cr-settings></cr-settings>
73 <link rel="import" href="chrome://resources/html/i18n_template.html"> 73 <link rel="import" href="chrome://resources/html/i18n_template.html">
74 </body> 74 </body>
75 </html> 75 </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