Changeset 68035 in webkit


Ignore:
Timestamp:
Sep 22, 2010 5:10:25 AM (14 years ago)
Author:
diegohcg@webkit.org
Message:

[Qt] On Maemo platform, web style is missing for some inputs
https://bugs.webkit.org/show_bug.cgi?id=46182

Patch by Ragner Magalhaes <ragner.magalhaes@openbossa.org> on 2010-09-21
Reviewed by Kenneth Rohde Christiansen.

  • css/themeQtMaemo5.css:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r68033 r68035  
     12010-09-21  Ragner Magalhaes  <ragner.magalhaes@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] On Maemo platform, web style is missing for some inputs
     6        https://bugs.webkit.org/show_bug.cgi?id=46182
     7
     8        * css/themeQtMaemo5.css:
     9
    1102010-09-22  Patrick Gansterer  <paroga@webkit.org>
    211
  • trunk/WebCore/css/themeQtMaemo5.css

    r56860 r68035  
    6767input[type="text"],
    6868input[type="password"],
     69input[type="email"],
     70input[type="color"],
     71input[type="search"],
     72input[type="date"],
     73input[type="number"],
     74input[type="url"],
    6975textarea {
    7076    border: 1px solid black;
     
    7480input[type="text"]:disabled,
    7581input[type="password"]:disabled,
     82input[type="email"]:disabled,
     83input[type="color"]:disabled,
     84input[type="search"]:disabled,
     85input[type="date"]:disabled,
     86input[type="number"]:disabled,
     87input[type="url"]:disabled,
    7688textarea:disabled {
    7789    border: 1px solid grey;
     
    8294input[type="text"]:active,
    8395input[type="password"]:active,
     96input[type="email"]:active,
     97input[type="color"]:active,
     98input[type="search"]:active,
     99input[type="date"]:active,
     100input[type="number"]:active,
     101input[type="url"]:active,
    84102textarea:active {
    85103    background-color:ButtonShadow;
Note: See TracChangeset for help on using the changeset viewer.