mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Remove name seperator in editor
This commit is contained in:
+2
-2
@@ -656,6 +656,7 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;}
|
||||
border-right: 1px solid #CCC;
|
||||
width: 12.5%;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.inspector-wrap .message div.fl .icon{
|
||||
@@ -892,8 +893,7 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;}
|
||||
}
|
||||
|
||||
.inspector-body .name {
|
||||
height: 110px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.name input.major {
|
||||
|
||||
+1
-1
@@ -175,7 +175,7 @@ locale.en = {
|
||||
"okay": "Okay",
|
||||
"view_on_osm": "View on OSM",
|
||||
"name": "Name",
|
||||
"editing": "Edit details",
|
||||
"editing_feature": "Editing {feature}",
|
||||
"additional": "Additional tags",
|
||||
"choose": "Select feature type",
|
||||
"results": "{n} results for {search}",
|
||||
|
||||
@@ -44,7 +44,7 @@ iD.ui.TagEditor = function(context, entity) {
|
||||
|
||||
messagewrap.append('h3')
|
||||
.attr('class', 'inspector-inner fl')
|
||||
.text('Editing ' + preset.name());
|
||||
.text(t('inspector.editing_feature', { feature: preset.name() }));
|
||||
|
||||
messagewrap.append('button')
|
||||
.attr('class', 'preset-close fr')
|
||||
@@ -55,9 +55,7 @@ iD.ui.TagEditor = function(context, entity) {
|
||||
var editorwrap = selection.append('div')
|
||||
.attr('class', 'tag-wrap inspector-body fillL2 inspector-body-' + entity.geometry(context.graph()));
|
||||
|
||||
var headerwrap = editorwrap.append('div').attr('class','col12 head');
|
||||
|
||||
var namewrap = headerwrap.append('div')
|
||||
var namewrap = editorwrap.append('div')
|
||||
.attr('class', 'name fillL inspector-inner col12');
|
||||
|
||||
namewrap.append('h4')
|
||||
|
||||
Reference in New Issue
Block a user