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

Unified Diff: chrome/browser/resources/settings/settings_page/settings_section.html

Issue 1949533003: MD Settings: replace paper-material with paper-material-shared-styles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/settings_page/settings_section.html
diff --git a/chrome/browser/resources/settings/settings_page/settings_section.html b/chrome/browser/resources/settings/settings_page/settings_section.html
index ed4e2632c1b5c55b0f9a5d63d63d343e9120156f..dc6fc2c07deeafde8b88b48e91c5fc973ba60e95 100644
--- a/chrome/browser/resources/settings/settings_page/settings_section.html
+++ b/chrome/browser/resources/settings/settings_page/settings_section.html
@@ -1,16 +1,21 @@
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animation-runner-behavior.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-material.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.html">
+<link rel="import" href="chrome://md-settings/settings_page/settings_section_css.html">
<dom-module id="settings-section">
- <link rel="import" type="css" href="settings_section.css">
<template>
+ <style is="custom-style" include="settings-section-styles">
dschuyler 2016/05/04 22:23:39 Is settings-section-styles likely to be used elsew
michaelpg 2016/05/05 13:36:49 Done.
+ #card {
+ @apply(--shadow-elevation-2dp);
+ }
+ </style>
<div id="header">
<div class="title">{{pageTitle}}</div>
</div>
- <paper-material id="card" animated>
michaelpg 2016/05/04 02:55:25 there is a corresponding TODO in main_page_behavio
+ <div id="card">
<content id="content"></content>
- </paper-material>
+ </div>
</template>
<script src="settings_section.js"></script>
</dom-module>

Powered by Google App Engine
This is Rietveld 408576698