Fix background pane tooltips

This commit is contained in:
John Firebaugh
2013-11-05 15:52:20 -08:00
parent 25e2347b0a
commit 0bf0849eb3
2 changed files with 3 additions and 3 deletions

View File

@@ -2693,7 +2693,7 @@ img.wiki-image {
border-bottom-color: #000;
}
.map-overlay .tooltip.left .tooltip-arrow
.map-overlay .tooltip.left .tooltip-arrow,
.entity-editor-pane .tooltip.left .tooltip-arrow {
border-left-color: #000;
}

View File

@@ -209,7 +209,7 @@ iD.ui.Background = function(context) {
.on('click.set-opacity', setOpacity)
.html('<div class="select-box"></div>')
.call(bootstrap.tooltip()
.placement('top'))
.placement('left'))
.append('div')
.attr('class', 'opacity')
.style('opacity', String);
@@ -272,7 +272,7 @@ iD.ui.Background = function(context) {
label = gpxLayerItem.append('label')
.call(bootstrap.tooltip()
.title(t('gpx.drag_drop'))
.placement('left'));
.placement('top'));
label.append('input')
.attr('type', 'checkbox')