| 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 ac07ddc534e076e18169b93844941aac003c483e..298ac98e5508111c2f3bb056ab0d1a41f0007b3a 100644
|
| --- a/chrome/browser/resources/settings/settings_shared_css.html
|
| +++ b/chrome/browser/resources/settings/settings_shared_css.html
|
| @@ -6,21 +6,21 @@
|
| <template>
|
| <style include="cr-shared-style">
|
| button[is='paper-icon-button-light'] {
|
| - --paper-icon-button-light-ripple: {
|
| - /* Center the ripple on the icon button. */
|
| - height: 36px;
|
| - left: -8px;
|
| - top: -8px;
|
| - width: 36px;
|
| - };
|
| + -webkit-margin-end: -8px; /* Allow ripple to overlap the end. */
|
| -webkit-margin-start: 16px;
|
| - background-size: cover;
|
| + background-position: center;
|
| + background-repeat: no-repeat;
|
| + background-size: var(--settings-icon-size);
|
| flex-shrink: 0;
|
| - height: 20px;
|
| - width: 20px;
|
| + height: var(--settings-icon-ripple-size);
|
| + width: var(--settings-icon-ripple-size);
|
| + }
|
| +
|
| + :host-context([dir=rtl]) button[is='paper-icon-button-light'] {
|
| + transform: scaleX(-1); /* Flip on the X axis (aka mirror). */
|
| }
|
|
|
| - [actionable] button[is="paper-icon-button-light"].icon-arrow-right {
|
| + [actionable] button[is="paper-icon-button-light"].subpage-arrow {
|
| background-image: url(images/arrow_right.svg);
|
| }
|
|
|
|
|