Commit 02d7b67a authored by Sanket Joshi's avatar Sanket Joshi Committed by Commit Bot

Revert "ColorPicker: Fix vertical alignment of the up-down arrow icon"

This reverts commit 73ace883.

Reason for revert: The change is missing updated mac10.10 baseline images.

Original change's description:
> ColorPicker: Fix vertical alignment of the up-down arrow icon
> 
> The up-down arrow is currently slight off vertical center. This CL
> fixes that and updates all affected test baselines.
> 
> Bug: 1010330
> Change-Id: Id1965a6243046816207bf521e25bb06413e6c77d
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1832720
> Reviewed-by: Mason Freed <masonfreed@chromium.org>
> Reviewed-by: Kent Tamura <tkent@chromium.org>
> Commit-Queue: Sanket Joshi <sajos@microsoft.com>
> Cr-Commit-Position: refs/heads/master@{#702218}

TBR=chrishtr@chromium.org,tkent@chromium.org,masonfreed@chromium.org,sajos@microsoft.com

Change-Id: I5deec049c9c7fbb01c60d1a7a858db54f4484932
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 1010330
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836955
Auto-Submit: Sanket Joshi <sajos@microsoft.com>
Reviewed-by: default avatarKent Tamura <tkent@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#702348}
parent 142130e8
...@@ -143,11 +143,6 @@ format-toggler:hover { ...@@ -143,11 +143,6 @@ format-toggler:hover {
background-color: #F7F7F7; background-color: #F7F7F7;
} }
#up-down-icon {
display: flex;
align-items: center;
}
format-label:not(.hidden-format-label) { format-label:not(.hidden-format-label) {
border-radius: 2px; border-radius: 2px;
display: flex; display: flex;
......
...@@ -1669,7 +1669,6 @@ class FormatToggler extends HTMLElement { ...@@ -1669,7 +1669,6 @@ class FormatToggler extends HTMLElement {
this.adjustFormatLabelVisibility_(); this.adjustFormatLabelVisibility_();
this.upDownIcon_ = document.createElement('span'); this.upDownIcon_ = document.createElement('span');
this.upDownIcon_.setAttribute('id', 'up-down-icon');
this.upDownIcon_.innerHTML = this.upDownIcon_.innerHTML =
'<svg width="6" height="8" viewBox="0 0 6 8" fill="none" ' + '<svg width="6" height="8" viewBox="0 0 6 8" fill="none" ' +
'xmlns="http://www.w3.org/2000/svg"><path d="M1.18359 ' + 'xmlns="http://www.w3.org/2000/svg"><path d="M1.18359 ' +
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment