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

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

Issue 2010283003: [MD settings] google-grey to paper-grey (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge with master 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 | « chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html ('k') | 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mation-runner-behavior.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mation-runner-behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
4 4
5 <dom-module id="settings-section"> 5 <dom-module id="settings-section">
6 <template> 6 <template>
7 <style> 7 <style>
8 :host { 8 :host {
9 display: flex; 9 display: flex;
10 flex-direction: column; 10 flex-direction: column;
11 position: relative; 11 position: relative;
12 } 12 }
13 13
14 #header { 14 #header {
15 margin-bottom: 12px; 15 margin-bottom: 12px;
16 } 16 }
17 17
18 #header .title { 18 #header .title {
19 color: var(--paper-grey-600); 19 color: rgb(104, 113, 116); /* Custom color from bettes@ */
20 font-size: 13px; 20 font-size: 13px;
21 font-weight: 500; 21 font-weight: 500;
22 } 22 }
23 23
24 #card { 24 #card {
25 @apply(--shadow-elevation-2dp); 25 @apply(--shadow-elevation-2dp);
26 background-color: white; 26 background-color: white;
27 flex: 1; 27 flex: 1;
28 overflow: hidden; 28 overflow: hidden;
29 } 29 }
(...skipping 17 matching lines...) Expand all
47 </style> 47 </style>
48 <div id="header"> 48 <div id="header">
49 <div class="title">{{pageTitle}}</div> 49 <div class="title">{{pageTitle}}</div>
50 </div> 50 </div>
51 <div id="card"> 51 <div id="card">
52 <content id="content"></content> 52 <content id="content"></content>
53 </div> 53 </div>
54 </template> 54 </template>
55 <script src="settings_section.js"></script> 55 <script src="settings_section.js"></script>
56 </dom-module> 56 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698