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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_card.html

Issue 1965913005: ChromeOS: Implement minumal material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit. 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/chromeos/login/oobe_card.html
diff --git a/chrome/browser/resources/chromeos/login/gaia_card.html b/chrome/browser/resources/chromeos/login/oobe_card.html
similarity index 52%
copy from chrome/browser/resources/chromeos/login/gaia_card.html
copy to chrome/browser/resources/chromeos/login/oobe_card.html
index 21a3c5197b6d27ec11424f52ea7d0c0608e273e0..660ec89213af2cffb4c8e52936af138cf739540d 100644
--- a/chrome/browser/resources/chromeos/login/gaia_card.html
+++ b/chrome/browser/resources/chromeos/login/oobe_card.html
@@ -1,39 +1,35 @@
-<!-- Copyright 2015 The Chromium Authors. All rights reserved.
+<!-- Copyright 2016 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-progress.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
<!--
- Simple Gaia card which should be used for local UI elements that look like
- GAIA. It has blue header and grey footer.
+ Simple OOBE card which should be used for OOBE UI elements.
+ It has blue header and grey footer.
Example:
- <gaia-card>
- <div class="header" flex vertical layout end-justified start>
+ <oobe-card>
+ <div class="header flex vertical layout end-justified start">
...
</div>
- <gaia-input-form class="footer" ...>
- </gaia-input-form>
- </gaia-card>
+ <oobe-input-form class="footer" ...>
+ </oobe-input-form>
+ </oobe-card>
Add class |header| to all which you want to go inside blue header. Similar
with class |footer|.
-->
-<dom-module name="gaia-card">
- <link rel="stylesheet" href="gaia_card.css">
-
+<dom-module name="oobe-card">
+ <link rel="stylesheet" href="oobe_card.css">
<template>
- <div class="gaia-header vertical layout relative">
+ <div class="oobe-header vertical layout relative">
<div class="header-container flex vertical layout relative">
<content select=".header"></content>
</div>
- <paper-progress id="progress-bar" indeterminate></paper-progress>
</div>
- <div class="gaia-footer flex vertical layout">
+ <div class="oobe-footer flex vertical layout">
<div class="footer-container flex vertical layout">
<content select=".footer"></content>
</div>
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_card.css ('k') | chrome/browser/resources/chromeos/login/oobe_card.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698