Am Dienstag, 27. Juni 2006 16:12 schrieb Matthias Platzer:
> Hi Dirk,
>
> thanks for the report.
>
> could you help me debug this / find a solution that works
> please open the file colorPicker.css and edit the CSS rules for:
>
> #colorpicker-value,
> #colorpicker-value-input {
>   font-size: 9px !important;
>   font-family: Helvetica, Verdana, Sans-Serif;
>   height: 10px;
> }
>
> #colorpicker-value-input {
>   width: 40px;
> }
>
>
> #colorpicker-value ... is the surrounding span
> #colorpicker-value-input ... is the input field
>
> maybe you have to add padding, or introduce another font.
> i would like to keep that field as small as possible.
>
> hope you can help me with that
> - matthias

Hi Matthias,

thanks for the prompt reply. Here are two variants that work for me in all the 
mentioned browsers (i prefer the second variant):

1)

#colorpicker-value,
#colorpicker-value-input {
  font-size: 9px !important;
  font-family: Helvetica, Verdana, Sans-Serif;
  height: 13px;
}
#colorpicker-value-input {
  width: 47px;
}

2)

#colorpicker-value,
#colorpicker-value-input {
  font-size: 9px !important;
  font-family: Arial, Sans-Serif;
  height: 12px;
}
#colorpicker-value-input {
  width: 44px;
}

-- 
Dirk Eschler <mailto:[EMAIL PROTECTED]>
http://www.krusader.org
_______________________________________________
Rails-spinoffs mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to