Author: jablko Date: Wed Oct 27 11:38:04 2010 New Revision: 8557 Log: Use consistent box model if possible
Modified: trunk/plugins/sfClassicPlugin/css/main.css Modified: trunk/plugins/sfClassicPlugin/css/main.css ============================================================================== --- trunk/plugins/sfClassicPlugin/css/main.css Wed Oct 27 11:32:52 2010 (r8556) +++ trunk/plugins/sfClassicPlugin/css/main.css Wed Oct 27 11:38:04 2010 (r8557) @@ -85,8 +85,15 @@ background: #fff; border: 1px solid #ccc; border-top-color: #999; + + /* Use consistent box model if possible */ + + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + padding: 2px; - width: 95%; + width: 100%; } input[type=radio] @@ -932,13 +939,6 @@ -moz-border-radius: 2px; -webkit-border-radius: 2px; - /* Use consistent box model if possible */ - - box-sizing: border-box; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - margin: 0; /* Only needed in WebKit */ - width: 100%; font:1em/100% Verdana,sans-serif; } -- You received this message because you are subscribed to the Google Groups "Qubit Toolkit Commits" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/qubit-commits?hl=en.
