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

Unified Diff: chrome/browser/resources/settings/controls/important_site_checkbox.html

Issue 2892033003: Change checkbox size for ImportantSites dialog (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/controls/important_site_checkbox.html
diff --git a/chrome/browser/resources/settings/controls/important_site_checkbox.html b/chrome/browser/resources/settings/controls/important_site_checkbox.html
index 39b9b15a46a557807760616cb4484274d351a659..296f3432599d96bc4b44c8bc790c9be9e4067356 100644
--- a/chrome/browser/resources/settings/controls/important_site_checkbox.html
+++ b/chrome/browser/resources/settings/controls/important_site_checkbox.html
@@ -22,27 +22,24 @@
@apply(--settings-secondary-unchecked);
}
- .important-site-label {
- display: inline-block;
- }
-
.middot {
padding: 0 4px;
}
+ .label {
+ @apply(--settings-checkbox-label);
+ }
</style>
<div id="outerRow">
<paper-checkbox id="checkbox" checked="{{site.isChecked}}"
disabled="[[disabled]]">
- <div class="important-site-label">
- <div>[[site.registerableDomain]]</div>
- <div class="secondary">
- <span class="storage-size">[[site.storageSize]]</span>
- <template is="dom-if" if="[[site.hasNotifications]]">
- <span class="middot">&middot;</span>
- <span class="has-notifications">$i18n{notificationWarning}</span>
- </template>
- </div>
+ <div class="label">[[site.registerableDomain]]</div>
+ <div class="secondary label">
+ <span class="storage-size">[[site.storageSize]]</span>
+ <template is="dom-if" if="[[site.hasNotifications]]">
+ <span class="middot">&middot;</span>
+ <span class="has-notifications">$i18n{notificationWarning}</span>
+ </template>
</div>
</paper-checkbox>
</div>
« no previous file with comments | « chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698