| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 4 <link rel="import" href="../controls/settings_toggle_button.html"> | 4 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 5 <link rel="import" href="../settings_shared_css.html"> | 5 <link rel="import" href="../settings_shared_css.html"> |
| 6 | 6 |
| 7 <dom-module id="settings-stylus"> | 7 <dom-module id="settings-stylus"> |
| 8 <template> | 8 <template> |
| 9 <style include="settings-shared md-select"> | 9 <style include="settings-shared md-select"> |
| 10 .settings-box > .secondary { | 10 .settings-box > .secondary { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 <span class="md-select-underline"></span> | 66 <span class="md-select-underline"></span> |
| 67 </div> | 67 </div> |
| 68 </div> | 68 </div> |
| 69 | 69 |
| 70 <!-- TODO(scottchen): Make a proper a[href].settings-box with | 70 <!-- TODO(scottchen): Make a proper a[href].settings-box with |
| 71 icon-external (see: https://crbug.com/684005)--> | 71 icon-external (see: https://crbug.com/684005)--> |
| 72 <div class="settings-box two-line" on-tap="onFindAppsTap_" actionable | 72 <div class="settings-box two-line" on-tap="onFindAppsTap_" actionable |
| 73 hidden$="[[!prefs.arc.enabled.value]]"> | 73 hidden$="[[!prefs.arc.enabled.value]]"> |
| 74 <div class="start"> | 74 <div class="start"> |
| 75 $i18n{stylusFindMoreAppsPrimary} | 75 $i18n{stylusFindMoreAppsPrimary} |
| 76 <div class="secondary"> | 76 <div class="secondary" id="stylusFindMoreAppsSecondary"> |
| 77 $i18n{stylusFindMoreAppsSecondary} | 77 $i18n{stylusFindMoreAppsSecondary} |
| 78 </div> | 78 </div> |
| 79 </div> | 79 </div> |
| 80 <button class="icon-external" is="paper-icon-button-light"></button> | 80 <button class="icon-external" is="paper-icon-button-light" |
| 81 aria-label="$i18n{stylusFindMoreAppsPrimary}" |
| 82 aria-describedby="stylusFindMoreAppsSecondary"></button> |
| 81 </div> | 83 </div> |
| 82 | 84 |
| 83 </template> | 85 </template> |
| 84 <script src="stylus.js"></script> | 86 <script src="stylus.js"></script> |
| 85 </dom-module> | 87 </dom-module> |
| OLD | NEW |