01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
69 lines
1.2 KiB
SCSS
69 lines
1.2 KiB
SCSS
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
@mixin markdown {
|
|
// Overwrite core styles, otherwise h4 is lesser than default font-size
|
|
h4 {
|
|
font-size: 100%;
|
|
}
|
|
|
|
em {
|
|
font-style: italic;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
/* stylelint-disable-next-line csstools/use-logical */
|
|
padding-left: 0;
|
|
padding-inline-start: 15px;
|
|
|
|
&.contains-task-list {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
input:disabled + .checkbox-content {
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
div:has(table) {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
pre {
|
|
padding: 4px;
|
|
margin: 0;
|
|
border-radius: var(--border-radius);
|
|
background-color: var(--color-background-dark);
|
|
|
|
& code {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
code {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
padding: 2px 4px;
|
|
margin: 2px 0;
|
|
border-radius: var(--border-radius);
|
|
background-color: var(--color-background-dark);
|
|
}
|
|
|
|
blockquote {
|
|
/* stylelint-disable-next-line csstools/use-logical */
|
|
padding-left: 0;
|
|
padding-inline-start: 13px;
|
|
/* stylelint-disable-next-line csstools/use-logical */
|
|
border-left: none;
|
|
border-inline-start: 4px solid var(--color-border-dark);
|
|
}
|
|
|
|
img {
|
|
max-width: min(100%, 600px);
|
|
}
|
|
}
|