﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
31174	The inline original text area can not display full.	Jian Dai	nobody	"The changeform page that having a inline models, has a bug in the the style.
The style "".inline-group .tabular td.original p"" in ""form.css"", can not display the full text with ""height:1.1em"".
Browser: Chrome version  79.0.3945.117

I think it should be ""height: inherit""

* models.py

{{{
from django.db import models


# Create your models here.
class Parent(models.Model):
    name = models.CharField(max_length=128, blank=True, null=True)


class Children(models.Model):
    name = models.CharField(max_length=128, blank=True, null=True)
    parent = models.ForeignKey(Parent, on_delete=models.CASCADE)

}}}

* admin.py

{{{
from django.contrib import admin

from . import models


# Register your models here.

class ChildrenInline(admin.TabularInline):
    model = models.Children


@admin.register(models.Parent)
class ParentAdmin(admin.ModelAdmin):
    inlines = [ChildrenInline, ]
}}}"	Bug	closed	contrib.admin	3.0	Normal	invalid	form inline original css style		Unreviewed	0	0	0	0	0	1
