3a56782572
* add custom range option to top items page * add custom range option to profile page * add date filter option to chart pages * cleanup * fix x-axis date labels * date picker improvements * enhancements to custom date selection * remove unneeded condition --------- Co-authored-by: rleed <rleed1@pm.me> Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
.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%;
|
|
}
|
|
}
|
|
|
|
.markdownInput .text {
|
|
margin-top: -1px;
|
|
height: auto;
|
|
}
|
|
|
|
.dragOver {
|
|
box-shadow: 0 0 10px var(--bs-info);
|
|
}
|
|
|
|
.appendButton {
|
|
border-left: 0 !important;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.clearButton {
|
|
background-color: var(--theme-inputBg);
|
|
border: 1px solid var(--theme-borderColor);
|
|
padding: 0rem 0.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.clearButton:hover, .clearButton:active {
|
|
background-color: var(--theme-inputBg) !important;
|
|
border: 1px solid var(--theme-borderColor) !important;
|
|
border-left: 0 !important;
|
|
}
|
|
.clearButton.isInvalid {
|
|
border-color: #c03221;
|
|
}
|
|
|
|
/* https://github.com/react-bootstrap/react-bootstrap/issues/5475 */
|
|
.suggestionsMenu {
|
|
opacity: 1 !important;
|
|
pointer-events: unset !important;
|
|
}
|
|
|
|
.previewTab {
|
|
padding-top: .2rem;
|
|
padding-bottom: .3rem;
|
|
} |