Compare commits
2 commits
46660abb6a
...
bf698987c3
Author | SHA1 | Date | |
---|---|---|---|
bf698987c3 | |||
45112158b0 |
7 changed files with 9 additions and 4 deletions
|
@ -88,6 +88,8 @@ const replies: foundkey.entities.Note[] = props.conversation?.filter(item => ite
|
|||
}
|
||||
|
||||
> .body {
|
||||
overflow: clip;
|
||||
|
||||
> .cw {
|
||||
cursor: default;
|
||||
display: block;
|
||||
|
|
|
@ -175,9 +175,6 @@ withDefaults(defineProps<{
|
|||
<style lang="scss" scoped>
|
||||
.havbbuyv {
|
||||
white-space: pre-wrap;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
overflow: hidden;
|
||||
|
||||
&.nowrap {
|
||||
white-space: pre;
|
||||
|
|
|
@ -441,6 +441,8 @@ if (appearNote.replyId) {
|
|||
|
||||
> .main {
|
||||
> .body {
|
||||
overflow: clip;
|
||||
|
||||
> .cw {
|
||||
cursor: default;
|
||||
display: block;
|
||||
|
|
|
@ -65,6 +65,7 @@ defineProps<{
|
|||
}
|
||||
|
||||
> .body {
|
||||
overflow: clip;
|
||||
|
||||
> .cw {
|
||||
cursor: default;
|
||||
|
|
|
@ -72,6 +72,7 @@ const showContent = $ref(false);
|
|||
}
|
||||
|
||||
> .body {
|
||||
overflow: clip;
|
||||
|
||||
> .cw {
|
||||
cursor: default;
|
||||
|
|
|
@ -420,6 +420,8 @@ function focusAfter() {
|
|||
min-width: 0;
|
||||
|
||||
> .body {
|
||||
overflow: clip;
|
||||
|
||||
> .cw {
|
||||
cursor: default;
|
||||
display: block;
|
||||
|
|
|
@ -73,7 +73,7 @@ fetch(`/url?url=${encodeURIComponent(requestUrl.href)}&lang=${requestLang}`).the
|
|||
icon = info.icon;
|
||||
sitename = info.sitename;
|
||||
fetching = false;
|
||||
if (['http:', 'https:'].includes(new URL(info.player.url).protocol)) {
|
||||
if (info.player.url != null && ['http:', 'https:'].includes(new URL(info.player.url).protocol)) {
|
||||
player = info.player;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue