| OLD | NEW |
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be
havior.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 5 <link rel="import" href="/controls/pref_control_behavior.html"> |
| 6 <link rel="import" href="/settings_shared_css.html"> |
| 7 |
| 8 <dom-module id="controlled-button"> |
| 9 <template> |
| 10 <style include="settings-shared"> |
| 11 :host { |
| 12 align-items: center; |
| 13 display: flex; |
| 14 } |
| 15 |
| 16 :host([controlled_]) { |
| 17 /* Disable pointer events for this whole element, as outer on-tap gets |
| 18 * triggered when clicking/tapping anywhere in :host. */ |
| 19 pointer-events: none; |
| 20 } |
| 21 |
| 22 cr-policy-pref-indicator { |
| 23 -webkit-margin-start: var(--checkbox-spacing); |
| 24 /* Enable pointer events for the indicator so :hover works. Disable |
| 25 * clicks/taps via onIndicatorTap_ so outer on-tap doesn't trigger. */ |
| 26 pointer-events: all; |
| 27 } |
| 28 </style> |
| 29 |
| 30 <paper-button disabled="[[controlled_]]"> |
| 31 <content></content> |
| 32 </paper-button> |
| 33 |
| 34 <template is="dom-if" if="[[controlled_]]"> |
| 35 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_"> |
| 36 </cr-policy-pref-indicator> |
| 37 </template> |
| 38 |
| 39 </template> |
| 40 <script src="/controls/controlled_button.js"></script> |
| 41 </dom-module> |
| OLD | NEW |