mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-28 00:13:40 +00:00
aesthetic cleanup.
This commit is contained in:
@@ -696,6 +696,7 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;}
|
||||
width:100%;
|
||||
margin-top: 60px;
|
||||
padding: 20px 10px 10px 20px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
.grid-button-wrap {
|
||||
padding: 0 10px 10px 0;
|
||||
@@ -804,7 +805,6 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;}
|
||||
.show-more {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
border-top: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-radius: 0;
|
||||
}
|
||||
@@ -1126,6 +1126,11 @@ div.combobox {
|
||||
|
||||
/* tag editor */
|
||||
|
||||
.inspector-inner.additional-tags {
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.tag-list {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ iD.ui.PresetGrid = function(context, entity) {
|
||||
}
|
||||
|
||||
var gridwrap = selection.append('div')
|
||||
.attr('class', 'fillL inspector-body inspector-body-' + entity.geometry(context.graph()));
|
||||
.attr('class', 'fillL2 inspector-body inspector-body-' + entity.geometry(context.graph()));
|
||||
|
||||
var grid = gridwrap.append('div')
|
||||
.attr('class', 'preset-grid fillL cf')
|
||||
|
||||
@@ -30,10 +30,7 @@ iD.ui.TagEditor = function(context, entity) {
|
||||
.attr('class', 'message fillL');
|
||||
|
||||
messagewrap.append('button')
|
||||
.attr('class', 'tooltip-bottom preset-reset fl')
|
||||
.call(bootstrap.tooltip()
|
||||
.title(t('inspector.back_tooltip'))
|
||||
.placement('left'))
|
||||
.attr('class', 'preset-reset fl')
|
||||
.on('click', function() {
|
||||
event.choose(preset);
|
||||
})
|
||||
@@ -45,13 +42,13 @@ iD.ui.TagEditor = function(context, entity) {
|
||||
.text(t('inspector.editing'));
|
||||
|
||||
messagewrap.append('button')
|
||||
.attr('class', 'tooltip-bottom preset-close fr')
|
||||
.attr('class', 'preset-close fr')
|
||||
.on('click', event.close)
|
||||
.append('span')
|
||||
.attr('class', 'icon close');
|
||||
|
||||
var editorwrap = selection.append('div')
|
||||
.attr('class', 'tag-wrap inspector-body fillL inspector-body-' + entity.geometry(context.graph()));
|
||||
.attr('class', 'tag-wrap inspector-body fillL2 inspector-body-' + entity.geometry(context.graph()));
|
||||
|
||||
var headerwrap = editorwrap.append('div').attr('class','col12 head');
|
||||
|
||||
@@ -101,7 +98,7 @@ iD.ui.TagEditor = function(context, entity) {
|
||||
}
|
||||
|
||||
editorwrap.append('div')
|
||||
.attr('class','inspector-inner col12 fillL2')
|
||||
.attr('class','inspector-inner col12 fillL additional-tags')
|
||||
.call(tagList, preset.id === 'other');
|
||||
|
||||
// Don't add for created entities
|
||||
|
||||
Reference in New Issue
Block a user