Fix bug
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
61281a855c
commit
e6ab47ff76
2 changed files with 3 additions and 35 deletions
|
@ -501,10 +501,6 @@ $left-gutter: 64px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_expandedCodeBlock {
|
|
||||||
max-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_EventTile_collapsedCodeBlock {
|
.mx_EventTile_collapsedCodeBlock {
|
||||||
max-height: 30vh;
|
max-height: 30vh;
|
||||||
}
|
}
|
||||||
|
@ -533,35 +529,6 @@ $left-gutter: 64px;
|
||||||
background-color: $message-action-bar-fg-color;
|
background-color: $message-action-bar-fg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Inserted adjacent to <pre> blocks, (See TextualBody)
|
|
||||||
.mx_EventTile_expandButton {
|
|
||||||
position: absolute;
|
|
||||||
display: inline-block;
|
|
||||||
visibility: hidden;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 6px;
|
|
||||||
right: 6px;
|
|
||||||
width: 19px;
|
|
||||||
height: 19px;
|
|
||||||
mask-image: url($copy-button-url);
|
|
||||||
background-color: $message-action-bar-fg-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Inserted adjacent to <pre> blocks, (See TextualBody)
|
|
||||||
.mx_EventTile_collapseButton {
|
|
||||||
position: absolute;
|
|
||||||
display: inline-block;
|
|
||||||
visibility: hidden;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 6px;
|
|
||||||
right: 6px;
|
|
||||||
width: 19px;
|
|
||||||
height: 19px;
|
|
||||||
mask-image: url($copy-button-url);
|
|
||||||
background-color: $message-action-bar-fg-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_EventTile_body .mx_EventTile_pre_container:focus-within .mx_EventTile_copyButton,
|
.mx_EventTile_body .mx_EventTile_pre_container:focus-within .mx_EventTile_copyButton,
|
||||||
.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_copyButton {
|
.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_copyButton {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
|
|
|
@ -139,8 +139,9 @@ export default class TextualBody extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
_handleCodeBlockExpansion(codeBlock) {
|
_handleCodeBlockExpansion(codeBlock) {
|
||||||
const expandCodeBlock = SettingsStore.getValue("expandCodeByDefault");
|
if (!SettingsStore.getValue("expandCodeByDefault")) {
|
||||||
codeBlock.className = expandCodeBlock ? "mx_EventTile_expandedCodeBlock" : "mx_EventTile_collapsedCodeBlock";
|
codeBlock.className = "mx_EventTile_collapsedCodeBlock";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_highlightCode(codeBlock) {
|
_highlightCode(codeBlock) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue