diff --git a/Base/res/html/misc/textarea.html b/Base/res/html/misc/textarea.html new file mode 100644 index 0000000000..f6b9912e59 --- /dev/null +++ b/Base/res/html/misc/textarea.html @@ -0,0 +1,5 @@ + + diff --git a/Base/res/html/misc/welcome.html b/Base/res/html/misc/welcome.html index 48da06eb4f..7ec47402fd 100644 --- a/Base/res/html/misc/welcome.html +++ b/Base/res/html/misc/welcome.html @@ -72,6 +72,7 @@
  • blink
  • br
  • progressbar
  • +
  • textarea
  • CSS

    diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index f66dc9f372..9e0a40e339 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -222,7 +222,7 @@ ol { } /* FIXME: This is a temporary hack until we can render a native-looking frame for these. */ -input { +input, textarea { border: 1px solid black; min-width: 80px; min-height: 16px; @@ -231,6 +231,12 @@ input { overflow: hidden; } +textarea { + padding: 2px; + display: inline-block; + overflow: scroll; +} + input[type=submit], input[type=button], input[type=reset], input[type=checkbox], input[type=radio] { border: none; min-width: unset;