CSS renders Input in firefox mac diffrent then firefox PC. can i detect OS via javascript? or maybe
- by adardesign
I have a input[type="text"] the that has padding applied to it behaves differently in firefox PC then on a mac.
Any hacks that can target firefox PC?
These styles are what its seen on firefox PC firebug
.searchContainer input {
   border-color:#7C7C7C #C3C3C3 #DDDDDD;
   border-style:solid;
   border-width:1px;
   color:#555555;
   float:left;
   height:12px;
   padding:3px;
  }
These styles are what its seen on firefox Mac firebug
.searchContainer input  {
   border-color:#7C7C7C #C3C3C3 #DDDDDD;
   border-style:solid;
   border-width:1px;
   color:#555555;
   float:left;
   height:12px;
   padding:3px;
 }
No other styles are applied to these inputs. 
Here is a snapshot of FF PC http://tinyurl.com/2wdxmq5 
Here is a snapshot of FF mac http://tinyurl.com/2u7f2nl
any suggestions?