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

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

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: log histogram when important sites is shown Created 3 years, 9 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
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html">
2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
4 <link rel="import" href="settings_boolean_control_behavior.html">
5 <link rel="import" href="../settings_shared_css.html">
6
7 <dom-module id="important-site-checkbox">
8 <template>
9 <style include="settings-shared">
10 #outerRow {
11 align-items: center;
12 display: flex;
13 min-height: var(--settings-row-two-line-min-height);
14 width: 100%;
15 }
16
17 paper-checkbox {
18 width: 100%;
19 }
20
21 paper-checkbox:not([checked]) .secondary {
22 @apply(--settings-secondary-unchecked);
23 }
24
25 .favicon-image {
26 display: inline-block;
27 margin: 4px 14px 4px 0;
28 }
29
30 .important-site-label {
31 display: inline-block;
32 }
33
34 .has-notifications {
35 color: red;
36 }
37
38 </style>
39 <div id="outerRow">
40 <paper-checkbox id="checkbox" checked="{{site.isChecked}}"
41 disabled="[[disabled]]">
42 <div class="favicon-image" style$="[[siteIcon_(site.exampleOrigin)]];">
43 </div>
44 <div class="important-site-label">
45 <div>[[site.registerableDomain]]</div>
46 <div class="secondary">
47 <span class="storage-size">[[site.storageSize]]</span>
48 <template is="dom-if" if="[[site.hasNotifications]]">
49 <span>&nbsp;&middot;&nbsp;</span>
50 <span class="has-notifications">$i18n{notificationWarning}</span>
51 </template>
52 </div>
53 </div>
54 </paper-checkbox>
dschuyler 2017/03/20 19:22:38 Much of important_site_checkbox.* appears to be a
dullweber 2017/03/22 15:34:23 I initially looked at settings_checkbox but then c
dschuyler 2017/03/23 01:35:52 Hmm, does that mean that the user will need to adj
55 </div>
56 </template>
57 <script src="important_site_checkbox.js"></script>
58 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698