From a0d4d0180422f7679a199513f582464e0ccccd7e Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Thu, 24 Sep 2020 13:11:38 -0400 Subject: [PATCH] Minor styling fixes --- css/80_app.css | 3 +-- modules/ui/entity_editor.js | 2 +- modules/ui/feature_list.js | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 0b0e31bd2..5999daa76 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -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 { diff --git a/modules/ui/entity_editor.js b/modules/ui/entity_editor.js index cff80b89e..172a5a995 100644 --- a/modules/ui/entity_editor.js +++ b/modules/ui/entity_editor.js @@ -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') diff --git a/modules/ui/feature_list.js b/modules/ui/feature_list.js index 70fbff134..22441dd78 100644 --- a/modules/ui/feature_list.js +++ b/modules/ui/feature_list.js @@ -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);