| Index: chrome/browser/resources/settings/people_page/camera.html
|
| diff --git a/chrome/browser/resources/settings/people_page/camera.html b/chrome/browser/resources/settings/people_page/camera.html
|
| index 4f9bcc6fdaa4eb129f8d9457d864b9baf83f1deb..6437e0c3bca45b04459844c1bfbf980b4dce3b5d 100644
|
| --- a/chrome/browser/resources/settings/people_page/camera.html
|
| +++ b/chrome/browser/resources/settings/people_page/camera.html
|
| @@ -1,7 +1,7 @@
|
| <link rel="import" href="chrome://resources/html/polymer.html">
|
|
|
| <link rel="import" href="chrome://resources/html/util.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spinner.html">
|
| <link rel="import" href="../icons.html">
|
| <link rel="import" href="../settings_shared_css.html">
|
| @@ -50,7 +50,6 @@
|
| }
|
|
|
| #flipPhoto {
|
| - --iron-icon-fill-color: white;
|
| float: right;
|
| }
|
|
|
| @@ -59,7 +58,6 @@
|
| }
|
|
|
| #takePhoto {
|
| - --iron-icon-fill-color: white;
|
| background-color: var(--paper-green-500);
|
| border-radius: 50%;
|
| display: block;
|
| @@ -74,14 +72,14 @@
|
| </div>
|
| </div>
|
| <div id="cameraControls">
|
| - <paper-icon-button id="flipPhoto" tabindex="2"
|
| - icon="settings:flip" title="$i18n{flipPhoto}"
|
| - on-tap="onTapFlipPhoto_" disabled="[[!cameraOnline_]]">
|
| - </paper-icon-button>
|
| - <paper-icon-button id="takePhoto" tabindex="1"
|
| - icon="settings:camera-alt" title="$i18n{takePhoto}"
|
| - on-tap="takePhoto" disabled="[[!cameraOnline_]]">
|
| - </paper-icon-button>
|
| + <button is="paper-icon-button-light" id="flipPhoto" tabindex="2"
|
| + title="$i18n{flipPhoto}" on-tap="onTapFlipPhoto_"
|
| + disabled="[[!cameraOnline_]]" class="icon-flip">
|
| + </button>
|
| + <button is="paper-icon-button-light" id="takePhoto" tabindex="1"
|
| + title="$i18n{takePhoto}" on-tap="takePhoto"
|
| + disabled="[[!cameraOnline_]]" class="icon-camera-alt">
|
| + </button>
|
| </div>
|
| </div>
|
| </template>
|
|
|