stacker.news/components/form.module.css

39 lines
736 B
CSS
Raw Normal View History

2021-07-01 23:51:58 +00:00
.noTopLeftRadius textarea {
border-top-left-radius: 0;
}
.markdownInput textarea {
margin-top: -1px;
font-size: 94%;
line-height: 140%;
}
@media screen and (min-width: 767px) {
.markdownInput textarea {
line-height: 130%;
}
2021-07-01 23:51:58 +00:00
}
.markdownInput .text {
margin-top: -1px;
height: auto;
2021-09-12 16:55:38 +00:00
}
2022-08-25 18:46:07 +00:00
.clearButton {
background-color: var(--theme-inputBg);
border: 1px solid var(--theme-borderColor);
padding: 0rem 0.5rem;
border-left: 0;
display: flex;
align-items: center;
}
.clearButton.isInvalid {
border-color: #c03221;
2022-08-26 22:20:09 +00:00
}
/* https://github.com/react-bootstrap/react-bootstrap/issues/5475 */
.suggestionsMenu {
opacity: 1 !important;
pointer-events: unset !important;
2022-08-25 18:46:07 +00:00
}