iceshrimp-legacy/src/client/components/misskey-flavored-markdown.vue

50 lines
808 B
Vue
Raw Normal View History

<template>
<mfm-core v-bind="$attrs" class="havbbuyv" :class="{ nowrap: $attrs['nowrap'] }"/>
</template>
<script lang="ts">
import Vue from 'vue';
import MfmCore from './mfm';
export default Vue.extend({
components: {
MfmCore
}
});
</script>
<style lang="scss" scoped>
.havbbuyv {
white-space: pre-wrap;
&.nowrap {
white-space: pre;
word-wrap: normal; // https://codeday.me/jp/qa/20190424/690106.html
overflow: hidden;
text-overflow: ellipsis;
}
::v-deep .quote {
display: block;
margin: 8px;
padding: 6px 0 6px 12px;
2020-01-30 21:20:10 +01:00
color: var(--fg);
border-left: solid 3px var(--fg);
opacity: 0.7;
}
2020-02-01 09:10:56 +01:00
::v-deep pre {
font-size: 0.8em;
}
2020-02-06 09:05:19 +01:00
2020-02-21 22:54:35 +01:00
::v-deep > code {
word-break: break-all;
}
2020-02-06 09:05:19 +01:00
::v-deep .title {
text-align: center;
border-bottom: solid 1px var(--divider);
}
}
</style>