Minor styling fixes

This commit is contained in:
Quincy Morgan
2020-09-24 13:11:38 -04:00
parent 9a8cae70d2
commit a0d4d01804
3 changed files with 4 additions and 5 deletions

View File

@@ -191,6 +191,7 @@ input[type=email] {
height: 2.585em;
}
textarea {
min-height: 2em;
padding-top: 5px;
padding-bottom: 5px;
resize: vertical;
@@ -4657,8 +4658,6 @@ img.tile-debug {
.modal-section.buttons .action {
display: inline-block;
margin: 0 10px;
text-align: center;
vertical-align: middle;
}
.save-section .buttons {

View File

@@ -40,7 +40,7 @@ export function uiEntityEditor(context) {
// Enter
var headerEnter = header.enter()
.append('div')
.attr('class', 'header fillL cf');
.attr('class', 'header fillL');
headerEnter
.append('button')

View File

@@ -31,7 +31,7 @@ export function uiFeatureList(context) {
function featureList(selection) {
var header = selection
.append('div')
.attr('class', 'header fillL cf');
.attr('class', 'header fillL');
header
.append('h3')
@@ -59,7 +59,7 @@ export function uiFeatureList(context) {
var list = listWrap
.append('div')
.attr('class', 'feature-list cf');
.attr('class', 'feature-list');
context
.on('exit.feature-list', clearSearch);