Commit 332d32b7 authored by Elly Fong-Jones's avatar Elly Fong-Jones Committed by Commit Bot

views: reduce focus halo thickness to 2dip

This change reduces focus rings from 4dip thick inset by 2dip to 2dip thick inset
by 1dip.

Bug: 851122
Change-Id: I8e38df43fd410cb4f1dc526c767b4f77b26733cd
Reviewed-on: https://chromium-review.googlesource.com/1127929
Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org>
Reviewed-by: default avatarScott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#573381}
parent 80edfec5
...@@ -42,8 +42,8 @@ const bool PlatformStyle::kIsOkButtonLeading = false; ...@@ -42,8 +42,8 @@ const bool PlatformStyle::kIsOkButtonLeading = false;
// Set kFocusHaloInset to negative half of kFocusHaloThickness to draw half of // Set kFocusHaloInset to negative half of kFocusHaloThickness to draw half of
// the focus ring inside and half outside the parent elmeent // the focus ring inside and half outside the parent elmeent
const float PlatformStyle::kFocusHaloThickness = 4.f; const float PlatformStyle::kFocusHaloThickness = 2.f;
const float PlatformStyle::kFocusHaloInset = -2.f; const float PlatformStyle::kFocusHaloInset = -1.f;
#if !defined(OS_MACOSX) #if !defined(OS_MACOSX)
......
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