| <link rel="import" href="chrome://resources/html/polymer.html"> |
| |
| <link rel="import" href="chrome://resources/cr_elements/cr_button/cr_button.html"> |
| <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html"> |
| <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| <link rel="import" href="../../settings_shared_css.html"> |
| <link rel="import" href="../../i18n_setup.html"> |
| |
| <dom-module id="art-album-dialog"> |
| <template> |
| <style include="settings-shared"> |
| cr-dialog::part(dialog) { |
| min-width: 288px; |
| width: 288px; |
| } |
| </style> |
| <cr-dialog id="dialog"> |
| <div slot="body">$i18n{ambientModeLastArtAlbumMessage}</div> |
| <div slot="button-container"> |
| <cr-button class="action-button" on-click="onClose_"> |
| $i18n{ambientModeArtAlbumDialogCloseButtonLabel} |
| </cr-button> |
| </div> |
| </cr-dialog> |
| </template> |
| <script src="art_album_dialog.js"></script> |
| </dom-module> |