From 7c9b2172fd76db3b5fb7a11b1c5f50346de5bf71 Mon Sep 17 00:00:00 2001 From: guyben Date: Tue, 18 Dec 2018 14:17:27 -0800 Subject: [PATCH] Set a "nicer" margin value for textareas Currently there's a margin on the top, making the textarea be unaligned with the text naming it. This is annoying on the eye, and will be more annoying in the OT&E cl that will be added soon. - So why not just do this change in that CL? - Because the changes in the Screenshot tests here are irrelevant to that CL and I found make it harder to actually review the actual screenshots we're adding there. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=226057985 --- java/google/registry/ui/css/registry.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/google/registry/ui/css/registry.css b/java/google/registry/ui/css/registry.css index ad8e4d45d..3607b22cb 100644 --- a/java/google/registry/ui/css/registry.css +++ b/java/google/registry/ui/css/registry.css @@ -48,7 +48,7 @@ input[readonly], textarea[readonly] { } textarea { - margin: 1em 0; + margin-bottom: 1em; font-family: monospace; font-size: 13px; border: solid 1px #ddd;