2021-07-01 23:51:58 +00:00
|
|
|
.noTopLeftRadius textarea {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markdownInput textarea {
|
|
|
|
margin-top: -1px;
|
2023-07-04 19:36:55 +00:00
|
|
|
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
|
|
|
|
2023-11-06 20:53:33 +00:00
|
|
|
.dragOver {
|
|
|
|
box-shadow: 0 0 10px var(--bs-info);
|
|
|
|
}
|
|
|
|
|
2023-07-24 18:35:05 +00:00
|
|
|
.appendButton {
|
|
|
|
border-left: 0 !important;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
2022-08-25 18:46:07 +00:00
|
|
|
.clearButton {
|
|
|
|
background-color: var(--theme-inputBg);
|
|
|
|
border: 1px solid var(--theme-borderColor);
|
|
|
|
padding: 0rem 0.5rem;
|
2023-11-09 00:15:36 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-08-25 18:46:07 +00:00
|
|
|
}
|
|
|
|
|
2023-07-24 18:35:05 +00: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 18:46:07 +00:00
|
|
|
.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;
|
2023-10-26 18:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.previewTab {
|
|
|
|
padding-top: .2rem;
|
|
|
|
padding-bottom: .3rem;
|
2024-07-01 17:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pending {
|
|
|
|
animation-name: pulse;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
animation-duration: 0.66s;
|
|
|
|
animation-direction: alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
|
|
|
opacity: 42%;
|
|
|
|
}
|
2024-10-04 20:00:13 +00:00
|
|
|
}
|