Skip to content
Snippets Groups Projects
Unverified Commit f8462567 authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #3876 from st3iny/fix/noid/source-modal-scroll

Improve source modal scroll bar
parents 9a5c2463 eebd7c70
No related branches found
No related tags found
No related merge requests found
......@@ -125,9 +125,11 @@
</ActionButton>
</Actions>
<Modal v-if="showSource" class="source-modal" @close="onCloseSource">
<div class="section">
<h2>{{ t('mail', 'Message source') }}</h2>
<pre class="message-source">{{ rawMessage }}</pre>
<div class="source-modal-content">
<div class="section">
<h2>{{ t('mail', 'Message source') }}</h2>
<pre class="message-source">{{ rawMessage }}</pre>
</div>
</div>
</Modal>
<MoveModal
......@@ -431,8 +433,16 @@ export default {
.left {
flex-grow: 1;
}
.source-modal ::v-deep .modal-container {
overflow-y: scroll !important;
.source-modal {
::v-deep .modal-container {
height: 800px;
}
.source-modal-content {
width: 100%;
height: 100%;
overflow-y: scroll;
}
}
.icon-important {
::v-deep path {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment