Merge branch 'develop' of github.com:martini/zammad into develop
This commit is contained in:
commit
863e43e107
4 changed files with 16 additions and 4 deletions
|
@ -1,3 +1,3 @@
|
|||
<div class="richtext form-control">
|
||||
<div contenteditable="true" id="<%= @attribute.id %>" data-name="<%= @attribute.name %>" class="<%= @attribute.class %>"><%- @attribute.value %></div>
|
||||
<div contenteditable="true" id="<%= @attribute.id %>" data-name="<%= @attribute.name %>" class="richtext-content <%= @attribute.class %>"><%- @attribute.value %></div>
|
||||
</div>
|
|
@ -50,7 +50,7 @@
|
|||
|
||||
<div class="textBubble js-writeArea">
|
||||
<div class="bubble-arrow"></div>
|
||||
<div class="js-textarea articleNewEdit-body" contenteditable="true" data-name="body"><%- @article.body %></div>
|
||||
<div class="js-textarea richtext-content articleNewEdit-body" contenteditable="true" data-name="body"><%- @article.body %></div>
|
||||
<!-- .textBubble grows with textarea (and expanding clone) -->
|
||||
<div class="textBubble-footer js-textSizeLimit">
|
||||
<div class="textBubble-signatur"><span class="js-signature"></span></div>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
<div class="textBubble">
|
||||
<div class="bubble-arrow"></div>
|
||||
<div class="textBubble-content" id="article-content-<%= @article.id %>" data-id="<%= @article.id %>">
|
||||
<%- @article.html %>
|
||||
<div class="richtext-content"><%- @article.html %></div>
|
||||
<div class="textBubble-overflowContainer hide">
|
||||
<div class="btn btn--text js-unfold"><%- @T('See more') %></div>
|
||||
</div>
|
||||
|
|
|
@ -4556,7 +4556,7 @@ footer {
|
|||
margin: 0 0 4px;
|
||||
}
|
||||
|
||||
.attachments .icon {
|
||||
.attachments .icon-paperclip {
|
||||
position: absolute;
|
||||
left: 33px;
|
||||
top: 27px;
|
||||
|
@ -8124,6 +8124,18 @@ output {
|
|||
animation: pulsate 667ms ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
.richtext-content pre {
|
||||
padding: 15px;
|
||||
font-size: 13px;
|
||||
line-height: 1.45;
|
||||
margin: 10px 0;
|
||||
background: hsl(0,0%,97%);
|
||||
white-space: pre-wrap;
|
||||
border-radius: 3px;
|
||||
border: none;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
----------------
|
||||
|
|
Loading…
Reference in a new issue