| Index: chrome/browser/resources/settings/settings_shared_css.html
|
| diff --git a/chrome/browser/resources/settings/settings_shared_css.html b/chrome/browser/resources/settings/settings_shared_css.html
|
| index 721823e59a4af5c4d19f8f685a8255c54a428ab5..26ebed41b63b1c2da4c99618a6ed5827578077e7 100644
|
| --- a/chrome/browser/resources/settings/settings_shared_css.html
|
| +++ b/chrome/browser/resources/settings/settings_shared_css.html
|
| @@ -275,16 +275,26 @@
|
| font-weight: 500;
|
| }
|
|
|
| + /* A row with two lines of text. Often the lower line will be .secondary.
|
| + */
|
| + .two-line {
|
| + min-height: var(--settings-row-two-line-min-height);
|
| + }
|
| +
|
| /* A settings-box is a horizontal row of text or controls within a
|
| * setting section (page or subpage). */
|
| .settings-box {
|
| align-items: center;
|
| border-top: var(--settings-separator-line);
|
| display: flex;
|
| - min-height: var(--settings-row-min-height);
|
| + min-height: var(--settings-box-min-height);
|
| padding: 0 var(--settings-box-row-padding);
|
| }
|
|
|
| + .settings-box.two-line {
|
| + min-height: var(--settings-box-two-line-min-height);
|
| + }
|
| +
|
| /* We use an explicit tag to remove the top border, rather than a
|
| * :first-of-type modifier. This is a conscious choice, please consult
|
| * with dbeam@ or dschuyler@ prior to changing it. */
|
| @@ -297,12 +307,6 @@
|
| display: block;
|
| }
|
|
|
| - /* A row with two lines of text. Often the lower line will be .secondary.
|
| - */
|
| - .two-line {
|
| - min-height: var(--settings-row-two-line-min-height);
|
| - }
|
| -
|
| /* A start-aligned column. */
|
| .single-column {
|
| align-items: flex-start;
|
|
|