| 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 f5a4653719711fb0ae0c50a934a781dcc2eea6ef..ec460ccfd96384174d3d80480b94153530b20ac6 100644
|
| --- a/chrome/browser/resources/settings/settings_shared_css.html
|
| +++ b/chrome/browser/resources/settings/settings_shared_css.html
|
| @@ -50,8 +50,19 @@
|
| background-color: var(--paper-grey-300);
|
| }
|
|
|
| - .settings-box paper-button {
|
| + /* If a button is at the end of the row, shift it to overlap the end of
|
| + * the row. */
|
| + .settings-box paper-button:last-of-type {
|
| -webkit-margin-end: calc(var(--settings-button-edge-spacing) * -1);
|
| + }
|
| +
|
| + /* Space out multiple buttons in the same row. */
|
| + .settings-box paper-button + paper-button {
|
| + -webkit-margin-start: 16px;
|
| + }
|
| +
|
| + /* Adjust the margin between the separator and the first button. */
|
| + .settings-box .separator + paper-button {
|
| -webkit-margin-start: calc(var(--settings-button-edge-spacing) * -1);
|
| }
|
|
|
|
|