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

Unified Diff: chrome/browser/resources/settings/default_browser_page/default_browser_page.html

Issue 2752993002: MD Settings: Default browser message tweak. (Closed)
Patch Set: remove the css rule entirely since it's not being used no more 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/default_browser_page/default_browser_page.html
diff --git a/chrome/browser/resources/settings/default_browser_page/default_browser_page.html b/chrome/browser/resources/settings/default_browser_page/default_browser_page.html
index 2e133156dc6d5674d22adfd88f57e7fb6fa13899..e1da620bc2bc2a6916d4b0eaeeea040cbdba0f4e 100644
--- a/chrome/browser/resources/settings/default_browser_page/default_browser_page.html
+++ b/chrome/browser/resources/settings/default_browser_page/default_browser_page.html
@@ -7,10 +7,6 @@
<dom-module id="settings-default-browser-page">
<template>
<style include="settings-shared">
- .solo-secondary {
- @apply(--settings-secondary);
- margin: 0;
- }
</style>
<template is="dom-if" if="[[maySetDefaultBrowser_]]">
<div class="settings-box first two-line">
@@ -28,15 +24,15 @@
</template>
<template is="dom-if" if="[[!maySetDefaultBrowser_]]">
<div class="settings-box first">
- <div class="solo-secondary start" hidden$="[[!isDefault_]]"
+ <div class="start" hidden$="[[!isDefault_]]"
id="isDefault">
dpapad 2017/03/16 18:41:01 Nit: Does this fit in previous line now? Same ques
scottchen 2017/03/16 18:56:25 Not the second one, but did fix its indentation is
$i18n{defaultBrowserDefault}
</div>
- <div class="solo-secondary start" hidden$="[[!isSecondaryInstall_]]"
+ <div class="start" hidden$="[[!isSecondaryInstall_]]"
id="isSecondaryInstall">
$i18n{defaultBrowserSecondary}
</div>
- <div class="solo-secondary start" hidden$="[[!isUnknownError_]]"
+ <div class="start" hidden$="[[!isUnknownError_]]"
id="isUnknownError">
$i18n{defaultBrowserError}
</div>

Powered by Google App Engine
This is Rietveld 408576698