| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/html/util.html"> | 4 <link rel="import" href="chrome://resources/html/util.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 9 <link rel="import" href="../i18n_setup.html"> | 9 <link rel="import" href="../i18n_setup.html"> |
| 10 <link rel="import" href="../icons.html"> | 10 <link rel="import" href="../icons.html"> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #availableIcons img.iron-selected { | 55 #availableIcons img.iron-selected { |
| 56 padding: 0; | 56 padding: 0; |
| 57 } | 57 } |
| 58 | 58 |
| 59 #availableIcons iron-icon.iron-selected { | 59 #availableIcons iron-icon.iron-selected { |
| 60 padding: 16px; | 60 padding: 16px; |
| 61 } | 61 } |
| 62 | 62 |
| 63 #authorCredit, | 63 #authorCredit, |
| 64 #authorCredit a { | 64 #authorCredit a { |
| 65 color: var(--paper-grey-500); | 65 color: var(--paper-grey-600); |
| 66 } | 66 } |
| 67 | 67 |
| 68 #previewPane { | 68 #previewPane { |
| 69 -webkit-margin-end: 10px; | 69 -webkit-margin-end: 10px; |
| 70 flex-shrink: 0; | 70 flex-shrink: 0; |
| 71 width: 228px; | 71 width: 228px; |
| 72 } | 72 } |
| 73 | 73 |
| 74 #previewPane img { | 74 #previewPane img { |
| 75 display: block; | 75 display: block; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 </div> | 142 </div> |
| 143 <settings-camera id="camera" | 143 <settings-camera id="camera" |
| 144 camera-active="[[isCameraActive_(cameraPresent_, selectedItem_)]]" | 144 camera-active="[[isCameraActive_(cameraPresent_, selectedItem_)]]" |
| 145 on-phototaken="onPhotoTaken_"> | 145 on-phototaken="onPhotoTaken_"> |
| 146 </settings-camera> | 146 </settings-camera> |
| 147 </div> | 147 </div> |
| 148 </div> | 148 </div> |
| 149 </template> | 149 </template> |
| 150 <script src="change_picture.js"></script> | 150 <script src="change_picture.js"></script> |
| 151 </dom-module> | 151 </dom-module> |
| OLD | NEW |