[Rt-commit] rt branch, 4.2/rudder-input-styling-on-ff, created. rt-4.2.4-55-g437eed8

Wallace Reis wreis at bestpractical.com
Fri Jun 13 17:40:53 EDT 2014


The branch, 4.2/rudder-input-styling-on-ff has been created
        at  437eed86f77dd0c6db70c76061e1ab620e824dbb (commit)

- Log -----------------------------------------------------------------
commit 437eed86f77dd0c6db70c76061e1ab620e824dbb
Author: Wallace Reis <wreis at bestpractical.com>
Date:   Mon Jun 2 12:07:53 2014 -0300

    I#28233: Remove border-radius: 0 from input styling
    
    The input style (not only for type=text as showed the requestor but the
    dropdowns too) is buggy on Firefox with weird round corners and general
    look&feel.
    
    Applying the "patch" fixes the issue and doesn't affect other browsers.
    Additionally, remove the "-moz" and "-webkit" rules since the modern
    browser releases don’t require them anymore, as they have all adopted
    the oficial CSS3 syntax.

diff --git a/share/static/css/rudder/forms.css b/share/static/css/rudder/forms.css
index 9f7fc1f..1fc501c 100644
--- a/share/static/css/rudder/forms.css
+++ b/share/static/css/rudder/forms.css
@@ -48,12 +48,7 @@ input[type=submit],
 input[class=button],
 button,
 input,
-select {
-    font-size: 1.0em;
-    -moz-border-radius: 0;
-    -webkit-border-radius: 0;
-    border-radius: 0;
-}
+select { font-size: 1.0em }
 
 input[type=reset],
 input[type=submit],

-----------------------------------------------------------------------


More information about the rt-commit mailing list