Changeset 118632 in webkit
- Timestamp:
- May 27, 2012, 5:23:25 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/blackberry/RenderThemeBlackBerry.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r118631 r118632 1 2012-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 1 14 2012-05-27 Benjamin Poulain <bpoulain@apple.com> 2 15 -
trunk/Source/WebCore/platform/blackberry/RenderThemeBlackBerry.cpp
r115097 r118632 906 906 Color RenderThemeBlackBerry::platformTapHighlightColor() const 907 907 { 908 // Same color as 'focusRingPen' + 80 of alpha channel. 909 return Color(163, 200, 254, 80); 908 return Color(0, 168, 223, 50); 910 909 } 911 910 #endif … … 913 912 Color RenderThemeBlackBerry::platformActiveSelectionBackgroundColor() const 914 913 { 915 return Color( selection);914 return Color(0, 168, 223, 50); 916 915 } 917 916
Note:
See TracChangeset
for help on using the changeset viewer.