@cmstops/pro-compo
Version:
[物料平台文档中心](https://arco.design/docs/material/guide)
141 lines (124 loc) • 2.59 kB
text/less
@import './previewIframe.less';
// 变量
@qrCodeWidth: 300px;
.doc-preview-container {
position: fixed;
// 遮罩层
top: 0;
left: 0;
z-index: 10;
display: flex;
gap: 40px;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
user-select: none;
.loading-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.doc-preview-share {
display: flex;
flex-direction: column;
align-items: center;
width: @qrCodeWidth;
overflow: hidden;
background-color: #fff;
border-radius: 12px;
&-img {
width: @qrCodeWidth;
height: @qrCodeWidth;
img {
width: 100%;
height: 100%;
}
#qr-code-is-pub {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 100%;
height: 100%;
padding: 20px;
}
&-hint {
display: flex;
align-items: center;
justify-content: center;
width: calc(100% - 40px);
height: calc(100% - 40px);
margin-top: 20px;
margin-left: 20px;
color: #4886ff;
background-color: #edf3ff;
border-radius: 6px;
}
}
&-tips,
&-header,
&-link,
&-action {
box-sizing: border-box;
width: 100%;
padding: 0 20px;
}
// 备注
&-tips {
color: #333;
font-size: 14px;
text-align: center;
}
// header 控件
&-header {
display: flex;
align-items: center;
justify-content: space-between;
margin: 10px 0 5px;
}
// 链接展示
&-link {
display: flex;
flex-direction: column;
width: 100%;
margin-bottom: 20px;
&-value {
display: -webkit-box;
box-sizing: border-box;
padding: 6px 10px;
overflow: hidden;
color: #86909c;
line-height: 25px;
word-break: break-all;
background: #f2f2f2;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
&-hint {
margin-top: 10px;
color: #86909c;
font-size: 12px;
text-align: center;
}
}
&-action {
display: flex;
gap: 10px;
align-items: center;
justify-content: center;
margin: 0 0 20px;
}
}
.preview-close {
position: absolute;
top: 20px;
right: 20px;
color: #fff;
font-size: 20px;
cursor: pointer;
}
}