Chromium Code Reviews| 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 { |
|
hcarmona
2017/05/25 23:42:58
This will also affect a button that is by itself.
dschuyler
2017/05/26 00:07:03
If the button is entirely by itself or if it has s
|
| -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); |
| } |