| OLD | NEW |
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 9 | 9 |
| 10 <iron-iconset-svg name="oobe-buttons" size="24"> | 10 <iron-iconset-svg name="oobe-buttons" size="24"> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 --paper-button-flat-keyboard-focus: { | 47 --paper-button-flat-keyboard-focus: { |
| 48 border-color: var(--oobe-text-button-focused-border-color); | 48 border-color: var(--oobe-text-button-focused-border-color); |
| 49 border-radius: 2px; | 49 border-radius: 2px; |
| 50 border-style: solid; | 50 border-style: solid; |
| 51 border-width: 2px; | 51 border-width: 2px; |
| 52 }; | 52 }; |
| 53 } | 53 } |
| 54 </style> | 54 </style> |
| 55 <paper-button id="textButton" on-tap="onClick_" disabled="[[disabled]]" | 55 <paper-button id="textButton" on-tap="onClick_" disabled="[[disabled]]" |
| 56 inverse$="[[inverse]]" aria-label$="[[labelForAria]]" | 56 inverse$="[[inverse]]" aria-label$="[[labelForAria]]" |
| 57 border$="[[border]]"> | 57 border$="[[border]]" android$="[[android]]"> |
| 58 <div id="container" | 58 <div id="container" |
| 59 class="flex layout horizontal center center-justified self-stretch"> | 59 class="flex layout horizontal center center-justified self-stretch"> |
| 60 <content></content> | 60 <content></content> |
| 61 </div> | 61 </div> |
| 62 </paper-button> | 62 </paper-button> |
| 63 </template> | 63 </template> |
| 64 </dom-module> | 64 </dom-module> |
| 65 | 65 |
| 66 <!-- | 66 <!-- |
| 67 Material design square "<- Back" and "Next ->" buttons. | 67 Material design square "<- Back" and "Next ->" buttons. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 class="flex layout horizontal center self-stretch"> | 123 class="flex layout horizontal center self-stretch"> |
| 124 <hd-iron-icon icon1x="[[icon1x]]" icon2x="[[icon2x]]" | 124 <hd-iron-icon icon1x="[[icon1x]]" icon2x="[[icon2x]]" |
| 125 class="oobe-icon"> | 125 class="oobe-icon"> |
| 126 </hd-iron-icon> | 126 </hd-iron-icon> |
| 127 <content></content> | 127 <content></content> |
| 128 </div> | 128 </div> |
| 129 </div> | 129 </div> |
| 130 </paper-button> | 130 </paper-button> |
| 131 </template> | 131 </template> |
| 132 </dom-module> | 132 </dom-module> |
| OLD | NEW |