Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: chrome/browser/resources/settings/controls/controlled_button.html

Issue 2178273002: MD Settings: add a <controlled-button> that uses prefs to disable itself (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/controls/controlled_button.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/controls/controlled_button.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698