adding specific rules for bridge shadows

This commit is contained in:
Saman Bemel-Benrud
2013-03-28 16:34:03 -04:00
parent b39d6498e6
commit 6c5be4f8f7
3 changed files with 18 additions and 1 deletions
+1
View File
@@ -849,6 +849,7 @@ button[disabled] .icon.nearby { background-position: -340px -40px;}
.tag-wrap .preset-icon-wrap {
border-bottom: 1px solid #CCC;
background-color: #e8ebff;
}
.tag-wrap .preset-icon-wrap::after {
+16
View File
@@ -618,6 +618,22 @@ path.casing.tag-highway-bridleway.tag-bridge-yes {
stroke-width: 8;
}
path.shadow.tag-highway-residential.tag-bridge {
stroke-width:22;
}
path.shadow.tag-highway-living_street.tag-bridge-yes,
path.shadow.tag-highway-path.tag-bridge-yes,
path.shadow.line.tag-highway-pedestrian,
path.shadow.tag-highway-service.tag-bridge-yes,
path.shadow.tag-highway-track.tag-bridge-yes,
path.shadow.tag-highway-steps.tag-bridge-yes,
path.shadow.tag-highway-footway.tag-bridge-yes,
path.shadow.tag-highway-cycleway.tag-bridge-yes,
path.shadow.tag-highway-bridleway.tag-bridge-yes {
stroke-width: 16;
}
/* tunnels */
path.stroke.tag-highway.tag-tunnel-yes {
+1 -1
View File
@@ -52,7 +52,7 @@ iD.ui.TagEditor = function(context, entity) {
.attr('class', 'tag-wrap inspector-body fillL2 inspector-body-' + geometry);
editorwrap.append('div')
.attr('class', 'col12 inspector-inner preset-icon-wrap fillL3')
.attr('class', 'col12 inspector-inner preset-icon-wrap')
.append('div')
.attr('class','fillL')
.call(iD.ui.PresetIcon(context.geometry(entity.id)));