Changeset 115052 in webkit


Ignore:
Timestamp:
Apr 24, 2012 7:47:23 AM (12 years ago)
Author:
tkent@chromium.org
Message:

Clickable area of a calendar picker indicator is too small.
https://bugs.webkit.org/show_bug.cgi?id=84677

Reviewed by Kentaro Hara.

Test: fast/forms/date/date-appearance.html is affected.

  • css/html.css:

(input::-webkit-calendar-picker-indicator):

  • Remove unnecessary disaplay:inline-block.
  • Add paddings instead of the margin.

(input::-webkit-calendar-picker-indicator:hover):
Add hover style.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r115047 r115052  
     12012-04-24  Kent Tamura  <tkent@chromium.org>
     2
     3        Clickable area of a calendar picker indicator is too small.
     4        https://bugs.webkit.org/show_bug.cgi?id=84677
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Test: fast/forms/date/date-appearance.html is affected.
     9
     10        * css/html.css:
     11        (input::-webkit-calendar-picker-indicator):
     12        - Remove unnecessary disaplay:inline-block.
     13        - Add paddings instead of the margin.
     14        (input::-webkit-calendar-picker-indicator:hover):
     15        Add hover style.
     16
    1172012-04-24  Alexis Menard  <alexis.menard@openbossa.org>
    218
  • trunk/Source/WebCore/css/html.css

    r113532 r115052  
    670670#if defined(ENABLE_CALENDAR_PICKER) && ENABLE_CALENDAR_PICKER
    671671input::-webkit-calendar-picker-indicator {
    672     display: inline-block;
    673672    width: 0.66em;
    674673    height: 0.66em;
    675     -webkit-margin-end: 0.2em;
     674    padding: 0.17em 0.34em;
     675}
     676
     677input::-webkit-calendar-picker-indicator:hover {
     678    background-color: #eee;
    676679}
    677680#endif // ENABLE_CALENDAR_PICKER
Note: See TracChangeset for help on using the changeset viewer.