ibikecph / cphbikes

I Bike CPH Carto (old)
2 stars 3 forks source link

line-cap and line-join round #36

Closed sensescape closed 11 years ago

sensescape commented 11 years ago

I tried using this but then the roads disappeared: line-cap: round; line-join: round;

mojodna commented 11 years ago

Where did you add those?

Updating the default roads styles like so:

/** Default styles for all roads */
.roads
{
  ::outline
  {
    line-width: 0;
    line-color: @color_road_outline;
    line-cap: round;
    line-join: round;
  }

  line-width: 0;
  line-color: @color_road_inline;
  line-cap: round;
  line-join: round;
}

...seems to work ok. I'll leave it to you to add in and determine whether you're happy with it.

sensescape commented 11 years ago

The first time I didn't add it to the general .roads and the roads disappeared

Tried the above, and the roads looks good but if affected my railways, they got fat and the dash lines on the access roads also disappeared

mojodna commented 11 years ago

Assigning to me to adjust it so it doesn't affect railways and access roads.