mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-31 01:09:22 +02:00
background display options
This commit is contained in:
@@ -3622,12 +3622,13 @@ li.issue-fix-item button:not(.actionable) .fix-icon {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.display-control h5 {
|
||||
.display-options-container label {
|
||||
padding-bottom: 0;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.display-control h5 span {
|
||||
.display-options-container label span {
|
||||
font-weight: bold;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
|
||||
@@ -60,11 +60,10 @@ export function uiSectionBackgroundDisplayOptions(context) {
|
||||
var slidersEnter = containerEnter.selectAll('.display-control')
|
||||
.data(_sliders)
|
||||
.enter()
|
||||
.append('div')
|
||||
.append('label')
|
||||
.attr('class', function(d) { return 'display-control display-control-' + d; });
|
||||
|
||||
slidersEnter
|
||||
.append('h5')
|
||||
.html(function(d) { return t.html('background.' + d); })
|
||||
.append('span')
|
||||
.attr('class', function(d) { return 'display-option-value display-option-value-' + d; });
|
||||
|
||||
Reference in New Issue
Block a user