sztanko / crosslet

Crossfilter + leaflet
Other
164 stars 27 forks source link

Range inputs are too small for their content #2

Open 235 opened 11 years ago

235 commented 11 years ago

Digits in the range inputs are covered by the bottom and right borders of the input field.

fix to css (need to be converted to less):

#line 73 of crosslet.css:
.crosslet .crosslet_panel .box .legendText select, .crosslet * .crosslet_panel .box .legendText select, .crosslet .crosslet_panel .box .legendForm select, .crosslet * .crosslet_panel .box .legendForm select, .crosslet .crosslet_panel .box .legendText input[type="text"], .crosslet * .crosslet_panel .box .legendText input[type="text"], .crosslet .crosslet_panel .box .legendForm input[type="text"], .crosslet * .crosslet_panel .box .legendForm input[type="text"] {

REMOVE:
  height: 12px;
  padding-left: 4px;
FIX (otherwise inputs are of different width!): 
 width: auto; ->  width: 45px;