Remove overflow+watermark
This commit is contained in:
parent
58a87d0bab
commit
0729fc2fbc
|
@ -32,7 +32,7 @@
|
|||
position: relative;
|
||||
text-align: left;
|
||||
white-space: pre-wrap;
|
||||
overflow-y: auto;
|
||||
overflow-y: hidden;
|
||||
height: auto;
|
||||
min-height: 200px;
|
||||
max-height: 800px;
|
||||
|
@ -42,16 +42,10 @@
|
|||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#imgframe .watermark {
|
||||
color: #E3E3E3;
|
||||
font-size: 75pt;
|
||||
position: absolute;
|
||||
width: 80%;
|
||||
top: 100px;
|
||||
z-index: 0;
|
||||
#imgframe .ellipsis {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
/* fix multiselect bar offset on shared page */
|
||||
|
|
|
@ -232,15 +232,13 @@ OCA.Sharing.PublicApp = {
|
|||
textDiv.appendTo('#imgframe');
|
||||
var divHeight = textDiv.height();
|
||||
if (data.length > 999) {
|
||||
textDiv.append('</br></br><strong>(…)</strong>');
|
||||
divHeight += 50;
|
||||
var ellipsis = $('<div/>').addClass('ellipsis');
|
||||
ellipsis.html('(…)');
|
||||
ellipsis.appendTo('#imgframe');
|
||||
}
|
||||
if (divHeight > previewHeight) {
|
||||
textDiv.height(previewHeight);
|
||||
}
|
||||
var watermark = $('<div/>').addClass('watermark');
|
||||
watermark.text('SAMPLE');
|
||||
watermark.appendTo('#imgframe');
|
||||
},
|
||||
|
||||
_onDirectoryChanged: function (e) {
|
||||
|
|
Loading…
Reference in New Issue