Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
45 lines
1010 B
Plaintext
45 lines
1010 B
Plaintext
/* XXX: bleurgh, what is this? These classes totally break the component */
|
|
/* naming scheme; it's completely unclear where or how they're being used */
|
|
/* --Matthew */
|
|
|
|
.mx_Markdown_BOLD {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mx_Markdown_ITALIC {
|
|
font-style: italic;
|
|
/*
|
|
// interestingly, *not* using the explicit italic font
|
|
// variant seems yield better results.
|
|
|
|
// compensate for Nunito italics being terrible
|
|
// https://github.com/google/fonts/issues/172
|
|
transform: skewX(-14deg);
|
|
display: inline-block;
|
|
*/
|
|
}
|
|
|
|
.mx_Markdown_CODE {
|
|
padding: 0.2em 0;
|
|
margin: 0;
|
|
font-size: 85%;
|
|
background-color: $rte-code-bg-color;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.mx_Markdown_HR {
|
|
display: block;
|
|
background: $rte-bg-color;
|
|
}
|
|
|
|
.mx_Markdown_STRIKETHROUGH {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.mx_Emoji {
|
|
/* Should be 1.8rem for our default message bodies, and scale with the */
|
|
/* surrounding text */
|
|
font-size: max($font-18px, 1em);
|
|
vertical-align: bottom;
|
|
}
|