⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 118632 in webkit


Ignore:
Timestamp:
May 27, 2012, 5:23:25 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Update color for tap highlight and selection
https://bugs.webkit.org/show_bug.cgi?id=87606

Patch by Arvid Nilsson <anilsson@rim.com> on 2012-05-27
Reviewed by Antonio Gomes.

PR #154813

  • platform/blackberry/RenderThemeBlackBerry.cpp:

(WebCore::RenderThemeBlackBerry::platformTapHighlightColor):
(WebCore::RenderThemeBlackBerry::platformActiveSelectionBackgroundColor):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r118631 r118632  
     12012-05-27  Arvid Nilsson  <anilsson@rim.com>
     2
     3        [BlackBerry] Update color for tap highlight and selection
     4        https://bugs.webkit.org/show_bug.cgi?id=87606
     5
     6        Reviewed by Antonio Gomes.
     7
     8        PR #154813
     9
     10        * platform/blackberry/RenderThemeBlackBerry.cpp:
     11        (WebCore::RenderThemeBlackBerry::platformTapHighlightColor):
     12        (WebCore::RenderThemeBlackBerry::platformActiveSelectionBackgroundColor):
     13
    1142012-05-27  Benjamin Poulain  <bpoulain@apple.com>
    215
  • trunk/Source/WebCore/platform/blackberry/RenderThemeBlackBerry.cpp

    r115097 r118632  
    906906Color RenderThemeBlackBerry::platformTapHighlightColor() const
    907907{
    908     // Same color as 'focusRingPen' + 80 of alpha channel.
    909     return Color(163, 200, 254, 80);
     908    return Color(0, 168, 223, 50);
    910909}
    911910#endif
     
    913912Color RenderThemeBlackBerry::platformActiveSelectionBackgroundColor() const
    914913{
    915     return Color(selection);
     914    return Color(0, 168, 223, 50);
    916915}
    917916
Note: See TracChangeset for help on using the changeset viewer.