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

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

Issue 2756863002: ChromeOS: Powerwash UI update (Closed)
Patch Set: merge Created 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/oobe_buttons.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_buttons.html b/chrome/browser/resources/chromeos/login/oobe_buttons.html
index a738475080c2135b833bd5f9b9eb82b47afcea6d..03487202981b010e3ddcc6fdc0793e2efa66d94c 100644
--- a/chrome/browser/resources/chromeos/login/oobe_buttons.html
+++ b/chrome/browser/resources/chromeos/login/oobe_buttons.html
@@ -2,11 +2,11 @@
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/paper-styles/color.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-iconset-svg.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-fab/paper-fab.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">
<iron-iconset-svg name="oobe-buttons" size="24">
<svg>
@@ -36,8 +36,9 @@
Attributes:
'disabled' - button is disabled when the attribute is set.
- 'inverse' - makes text white and background blue
+ 'inverse' - makes text white and background blue.
'label-for-aria' - accessibility label.
+ 'border' - adds border to the button.
-->
<dom-module id="oobe-text-button">
<link rel="stylesheet" href="oobe_text_button.css">
@@ -53,7 +54,8 @@
}
</style>
<paper-button id="textButton" on-tap="onClick_" disabled="[[disabled]]"
- inverse$="[[inverse]]" aria-label$="[[labelForAria]]">
+ inverse$="[[inverse]]" aria-label$="[[labelForAria]]"
+ border$="[[border]]">
<div id="container"
class="flex layout horizontal center center-justified self-stretch">
<content></content>

Powered by Google App Engine
This is Rietveld 408576698