31 lines
588 B
CSS
31 lines
588 B
CSS
.noTopLeftRadius textarea {
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
.markdownInput textarea {
|
|
margin-top: -1px;
|
|
}
|
|
|
|
.markdownInput .text {
|
|
margin-top: -1px;
|
|
height: auto;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
/* https://github.com/react-bootstrap/react-bootstrap/issues/5475 */
|
|
.suggestionsMenu {
|
|
opacity: 1 !important;
|
|
pointer-events: unset !important;
|
|
} |