minor style tweaks, plus fix for #286

This commit is contained in:
Saman Bemel-Benrud
2012-12-19 16:42:19 -05:00
parent 43e66db157
commit 4dd33bbee5
3 changed files with 17 additions and 4 deletions
+4
View File
@@ -906,6 +906,10 @@ div.typeahead a:first-child {
border-width: 0 5px 5px;
}
.Browse .tooltip .tooltip-arrow {
left: 30px;
}
/* Mobile Tweaks
------------------------------------------------------- */
* {
+6 -4
View File
@@ -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(),
+7
View File
@@ -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);