mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-16 05:49:16 +02:00
minor style tweaks, plus fix for #286
This commit is contained in:
@@ -906,6 +906,10 @@ div.typeahead a:first-child {
|
||||
border-width: 0 5px 5px;
|
||||
}
|
||||
|
||||
.Browse .tooltip .tooltip-arrow {
|
||||
left: 30px;
|
||||
}
|
||||
|
||||
/* Mobile Tweaks
|
||||
------------------------------------------------------- */
|
||||
* {
|
||||
|
||||
+6
-4
@@ -174,11 +174,13 @@ window.iD = function(container) {
|
||||
"<li><a href='http://github.com/systemed/iD/issues'>report a bug</a></li>" +
|
||||
" <li>imagery <a href='http://opengeodata.org/microsoft-imagery-details'>provided by bing</a></li>");
|
||||
|
||||
about.append('div')
|
||||
var contributors = about.append('div')
|
||||
.attr('id', 'user-list')
|
||||
.attr('class','about-block fillD pad1')
|
||||
.append('span')
|
||||
.text('Viewing contributions by ');
|
||||
.attr('class','about-block fillD pad1');
|
||||
contributors.append('span')
|
||||
.attr('class', 'icon nearby icon-pre-text');
|
||||
contributors.append('pan')
|
||||
.text('Viewing contributions by ');
|
||||
|
||||
history.on('change.buttons', function() {
|
||||
var undo = history.undoAnnotation(),
|
||||
|
||||
@@ -160,6 +160,13 @@ iD.Inspector = function() {
|
||||
.on('click', function(entity) { event.remove(entity); });
|
||||
}
|
||||
|
||||
selection.html("").append('button')
|
||||
.attr('class', 'narrow close')
|
||||
.html("<span class='icon close'></span>")
|
||||
.on('click', function() {
|
||||
event.close(entity);
|
||||
});
|
||||
|
||||
selection.append('div')
|
||||
.attr('class', 'head inspector-inner')
|
||||
.call(drawhead);
|
||||
|
||||
Reference in New Issue
Block a user