[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:47:59 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d9e0c06047a58c9cf57cf23a40e4fbc7eb7aaaa0
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 12 17:30:51 2010 +0000

    2010-11-12  Luiz Agostini  <luiz.agostini at openbossa.org>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [Qt] Button's background style from default Qt Mobile Theme  is overriding facebook's button style
            https://bugs.webkit.org/show_bug.cgi?id=48198
    
            Instead of creating gradients that goes from white to grey and cover the whole element the gradients
            are created by varying the alpha channel of a dark color. This way the effect will not override the
            background color of the elements.
    
            * css/themeQtMobile.css:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71920 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 3a7e9a4..42cef37 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-11-12  Luiz Agostini  <luiz.agostini at openbossa.org>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] Button's background style from default Qt Mobile Theme  is overriding facebook's button style
+        https://bugs.webkit.org/show_bug.cgi?id=48198
+
+        Instead of creating gradients that goes from white to grey and cover the whole element the gradients
+        are created by varying the alpha channel of a dark color. This way the effect will not override the
+        background color of the elements.
+
+        * css/themeQtMobile.css:
+
 2010-11-12  Justin Schuh  <jschuh at chromium.org>
 
         Reviewed by Adam Barth.
diff --git a/WebCore/css/themeQtMobile.css b/WebCore/css/themeQtMobile.css
index 5cc39c8..8b0c548 100644
--- a/WebCore/css/themeQtMobile.css
+++ b/WebCore/css/themeQtMobile.css
@@ -33,7 +33,8 @@ select {
     padding: 2px 18px 3px 18px;
     border: 1px solid gray;
     -webkit-border-radius:5px;
-    background: -webkit-gradient(linear, left bottom, left top, color-stop(0.0, #e5e5e5), color-stop(0.4, #ffffff));
+    background: -webkit-gradient(linear, left bottom, left top, color-stop(0.0, rgba(0, 0, 0, 0.35)), color-stop(0.4, rgba(0, 0, 0, 0.0)));
+    background-color: #ffffff;
     color: #3e3e3e;
 }
 
@@ -76,7 +77,8 @@ input[type="number"],
 input[type="url"],
 textarea {
     border: 1px solid gray;
-    background: -webkit-gradient(linear, left top, left 30, color-stop(0.0, #bfbfbf), color-stop(0.2, #ffffff));
+    background: -webkit-gradient(linear, left top, left 30, color-stop(0.0, rgba(0, 0, 0, 0.35)), color-stop(0.2, rgba(0, 0, 0, 0.0)));
+    background-color: #ffffff;
     color: #3e3e3e;
     -webkit-border-radius:5px;
 }
@@ -93,7 +95,8 @@ input[type="number"]:disabled,
 input[type="url"]:disabled,
 textarea:disabled {
     border: 1px solid gray;
-    background: -webkit-gradient(linear, left top, left 30, color-stop(0.0, #e5e5e5), color-stop(0.2, #ffffff));
+    background: -webkit-gradient(linear, left top, left 30, color-stop(0.0, rgba(0, 0, 0, 0.3)), color-stop(0.2, rgba(0, 0, 0, 0.0)));
+    background-color: #ffffff;
     color: #e5e5e5;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list