stacker.news/components/form.module.css

47 lines
976 B
CSS
Raw Normal View History

2021-07-01 18:51:58 -05: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 18:51:58 -05:00
}
.markdownInput .text {
margin-top: -1px;
height: auto;
2021-09-12 11:55:38 -05:00
}
2022-08-25 13:46:07 -05:00
2023-07-24 13:35:05 -05:00
.appendButton {
border-left: 0 !important;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
2022-08-25 13:46:07 -05:00
.clearButton {
background-color: var(--theme-inputBg);
border: 1px solid var(--theme-borderColor);
padding: 0rem 0.5rem;
}
2023-07-24 13:35:05 -05:00
.clearButton:hover, .clearButton:active {
background-color: var(--theme-inputBg) !important;
border: 1px solid var(--theme-borderColor) !important;
border-left: 0 !important;
}
2022-08-25 13:46:07 -05:00
.clearButton.isInvalid {
border-color: #c03221;
2022-08-26 17:20:09 -05:00
}
/* https://github.com/react-bootstrap/react-bootstrap/issues/5475 */
.suggestionsMenu {
opacity: 1 !important;
pointer-events: unset !important;
2022-08-25 13:46:07 -05:00
}