Remove section borders from inspector

There is enough separation with the disclosure headings that we
don't need to break the sidebar up with lines
This commit is contained in:
Bryan Housel
2019-01-08 14:04:07 -05:00
parent 6c5ea96ab6
commit 5c6406ea63
3 changed files with 18 additions and 22 deletions

View File

@@ -784,10 +784,6 @@ a.hide-toggle {
bottom: 0;
}
.inspector-border {
border-bottom: 1px solid #ccc
}
.feature-list-pane .inspector-body,
.preset-list-pane .inspector-body {
top: 120px;
@@ -1161,7 +1157,7 @@ img.tag-reference-wiki-image {
------------------------------------------------------- */
.preset-editor {
overflow: hidden;
padding-bottom: 10px;
padding: 20px 0 10px 0;
}
.preset-editor a.hide-toggle {
margin: 0 20px 5px 20px;

View File

@@ -57,7 +57,7 @@ export function uiDataEditor(context) {
rte.enter()
.append('div')
.attr('class', 'inspector-border raw-tag-editor inspector-inner data-editor')
.attr('class', 'raw-tag-editor inspector-inner data-editor')
.merge(rte)
.call(rawTagEditor
.expanded(true)

View File

@@ -47,28 +47,28 @@ export function uiEntityEditor(context) {
.data([0]);
// Enter
var enter = header.enter()
var headerEnter = header.enter()
.append('div')
.attr('class', 'header fillL cf');
enter
headerEnter
.append('button')
.attr('class', 'fl preset-reset preset-choose')
.call(svgIcon((textDirection === 'rtl') ? '#iD-icon-forward' : '#iD-icon-backward'));
enter
headerEnter
.append('button')
.attr('class', 'fr preset-close')
.on('click', function() { context.enter(modeBrowse(context)); })
.call(svgIcon(_modified ? '#iD-icon-apply' : '#iD-icon-close'));
enter
headerEnter
.append('h3')
.text(t('inspector.edit'));
// Update
header = header
.merge(enter);
.merge(headerEnter);
header.selectAll('.preset-reset')
.on('click', function() {
@@ -81,11 +81,11 @@ export function uiEntityEditor(context) {
.data([0]);
// Enter
enter = body.enter()
var bodyEnter = body.enter()
.append('div')
.attr('class', 'inspector-body');
enter
bodyEnter
.append('div')
.attr('class', 'preset-list-item inspector-inner')
.append('div')
@@ -98,23 +98,23 @@ export function uiEntityEditor(context) {
.append('div')
.attr('class', 'label-inner');
enter
bodyEnter
.append('div')
.attr('class', 'inspector-border preset-editor');
.attr('class', 'preset-editor');
enter
bodyEnter
.append('div')
.attr('class', 'inspector-border raw-tag-editor inspector-inner');
.attr('class', 'raw-tag-editor inspector-inner');
enter
bodyEnter
.append('div')
.attr('class', 'inspector-border raw-member-editor inspector-inner');
.attr('class', 'raw-member-editor inspector-inner');
enter
bodyEnter
.append('div')
.attr('class', 'raw-membership-editor inspector-inner');
enter
bodyEnter
.append('input')
.attr('type', 'text')
.attr('class', 'key-trap');
@@ -122,7 +122,7 @@ export function uiEntityEditor(context) {
// Update
body = body
.merge(enter);
.merge(bodyEnter);
if (_tagReference) {
body.selectAll('.preset-list-button-wrap')