reduce height of post form by default
This commit is contained in:
parent
2a6f42fef3
commit
318c62c852
@ -440,6 +440,8 @@ textarea,
|
||||
height: unset;
|
||||
}
|
||||
|
||||
--padding: 0.5em;
|
||||
|
||||
border: none;
|
||||
border-radius: $fallback--inputRadius;
|
||||
border-radius: var(--inputRadius, $fallback--inputRadius);
|
||||
@ -456,10 +458,10 @@ textarea,
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
height: 2em;
|
||||
height: 2.4em;
|
||||
line-height: 1.2;
|
||||
hyphens: none;
|
||||
padding: 8px 0.5em;
|
||||
padding: var(--padding);
|
||||
|
||||
&:disabled,
|
||||
&[disabled=disabled],
|
||||
|
@ -507,12 +507,14 @@
|
||||
}
|
||||
|
||||
.form-post-body {
|
||||
resize: none;
|
||||
box-sizing: content-box;
|
||||
overflow: hidden;
|
||||
transition: min-height 200ms 100ms;
|
||||
padding-bottom: 1.75em;
|
||||
min-height: 2em;
|
||||
box-sizing: content-box;
|
||||
padding-bottom: calc(var(--padding) + 1.2em);
|
||||
// Because we changed box-sizing original height values are no longer correct
|
||||
height: 1.2em;
|
||||
min-height: 1.2em;
|
||||
resize: none;
|
||||
|
||||
&.scrollable-form {
|
||||
overflow-y: auto;
|
||||
|
Loading…
Reference in New Issue
Block a user