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/policy/cr_policy_vars_cs
s.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.html"> |
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog.
html"> | 8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog.
html"> |
9 <link rel="import" href="/controls/settings_checkbox.html"> | 9 <link rel="import" href="/controls/settings_checkbox.html"> |
10 <link rel="import" href="/controls/settings_toggle_button.html"> | 10 <link rel="import" href="/controls/settings_toggle_button.html"> |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 align-items: center; | 45 align-items: center; |
46 display: flex; | 46 display: flex; |
47 min-height: var(--settings-row-min-height); | 47 min-height: var(--settings-row-min-height); |
48 } | 48 } |
49 | 49 |
50 #metricsReportingCheckbox, | 50 #metricsReportingCheckbox, |
51 #safeBrowsingExtendedReportingCheckbox { | 51 #safeBrowsingExtendedReportingCheckbox { |
52 display: inline-block; | 52 display: inline-block; |
53 } | 53 } |
54 | 54 |
55 #metricsReportingCheckbox:not([disabled]), | 55 #metricsReportingCheckbox, |
56 #safeBrowsingExtendedReportingCheckbox { | 56 #safeBrowsingExtendedReportingCheckbox { |
57 width: 100%; | 57 width: 100%; |
58 } | 58 } |
59 | 59 |
60 #metricsReporting paper-tooltip { | 60 #metricsReporting paper-tooltip { |
61 --paper-tooltip: var(--cr-policy-tooltip); | 61 --paper-tooltip: var(--cr-policy-tooltip); |
62 } | 62 } |
63 | 63 |
64 #indicator { | 64 #indicator { |
65 -webkit-margin-start: var(--checkbox-spacing); | 65 -webkit-margin-start: var(--checkbox-spacing); |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 $i18n{siteSettingsCookieRemoveAll} | 395 $i18n{siteSettingsCookieRemoveAll} |
396 </paper-button> | 396 </paper-button> |
397 <site-data-details-subpage page-title="{{pageTitle}}"> | 397 <site-data-details-subpage page-title="{{pageTitle}}"> |
398 </site-data-details-subpage> | 398 </site-data-details-subpage> |
399 </settings-subpage> | 399 </settings-subpage> |
400 </template> | 400 </template> |
401 </settings-animated-pages> | 401 </settings-animated-pages> |
402 </template> | 402 </template> |
403 <script src="privacy_page.js"></script> | 403 <script src="privacy_page.js"></script> |
404 </dom-module> | 404 </dom-module> |
OLD | NEW |