修改附件内容背景透明问题

Signed-off-by: 小胡 <3203164629@qq.com>
This commit is contained in:
小胡
2024-01-31 11:01:32 +00:00
committed by Gitee
Unverified
parent 1e9cd56a2e
commit 833d8d1a97
2 changed files with 2 additions and 12 deletions

View File

@@ -40,18 +40,11 @@
.tip {
position: absolute;
padding: 10px;
_width: 200px;
max-width:350px;
border:solid 1px #b1b1b1;
box-shadow: 0 1px 3px #eee, inset 0 0 3px #fff;
border-radius:5px;
/*box-shadow:0 5px 15px RGBA(0,0,0,0.5);*/
word-break:break-all;
margin:0 10px;
}
.tip .tip-op a{
color:#4c8afb;
padding-top: 1px;
margin-right: 10px;
padding-bottom: 1px;
@@ -96,9 +89,6 @@
.tip_1, .tip_2 {
margin-top: 8px;
}
.tip_3, .tip_4 {
margin-top: -8px;
}
.tip_horn {
position: absolute;
width: 11px;

View File

@@ -1,4 +1,4 @@
/*
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
@@ -1828,7 +1828,7 @@ function showTip(ctrlobj,pos,msg) {
if(!document.getElementById(menuid)) {
var div = document.createElement('div');
div.id = ctrlobj.id + '_menu';
div.className = 'tip '+tip_classname;
div.className = 'tip da '+tip_classname;
div.style.display = 'none';
div.innerHTML = '<div class="tip_horn"></div><div class="tip_c">' + (msg?msg:ctrlobj.getAttribute('tip')) + '</div>';
document.getElementById('append_parent').appendChild(div);