mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Scroll overflowing tags. Fixes #116
This commit is contained in:
@@ -220,6 +220,11 @@ button small {
|
||||
width:350px;
|
||||
border-spacing:0;
|
||||
}
|
||||
.inspector-wrap .tag-table-wrap {
|
||||
max-height:350px;
|
||||
overflow-y:scroll;
|
||||
overflow-x:hidden;
|
||||
}
|
||||
.inspector-wrap table th {
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
@@ -50,6 +50,7 @@ iD.Inspector = function() {
|
||||
.attr('class', 'head').call(drawhead);
|
||||
|
||||
var table = selection
|
||||
.append('div').attr('class', 'tag-table-wrap')
|
||||
.append('table').attr('class', 'inspector');
|
||||
|
||||
table.append('thead').append('tr').selectAll('th')
|
||||
|
||||
Reference in New Issue
Block a user