Problem with Changing Font for Search Box
Created by: grantwoodtechnology
Hello,
I was trying to change the font attributes for the search box, but my changes weren't taking effect.
In patterns.less, around line 74, is this code:
input {
background-color: #444;
background-color: rgba(255,255,255,.3);
#font > .sans-serif(13px, normal, 1);
The parameters for the font attributes are in the wrong order. They should be:
input {
background-color: #444;
background-color: rgba(255,255,255,.3);
#font > .sans-serif(normal, 13px, 1);
Regards, Sean