mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 20:12:48 +00:00
no message
This commit is contained in:
parent
d8872f215b
commit
e1a2d90382
@ -43,7 +43,13 @@
|
|||||||
<Icon type="ios-loading" class="icon-loading"></Icon>
|
<Icon type="ios-loading" class="icon-loading"></Icon>
|
||||||
<div>{{$L('正在上传文件...')}}</div>
|
<div>{{$L('正在上传文件...')}}</div>
|
||||||
</Spin>
|
</Spin>
|
||||||
<Modal v-model="transfer" class="teditor-transfer" @on-visible-change="transferChange" footer-hide fullscreen transfer>
|
<Modal
|
||||||
|
v-model="transfer"
|
||||||
|
class="teditor-transfer"
|
||||||
|
@on-visible-change="transferChange"
|
||||||
|
footer-hide
|
||||||
|
fullscreen
|
||||||
|
transfer>
|
||||||
<div slot="close">
|
<div slot="close">
|
||||||
<Button type="primary" size="small">{{$L('完成')}}</Button>
|
<Button type="primary" size="small">{{$L('完成')}}</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -1312,6 +1312,7 @@ export default {
|
|||||||
},
|
},
|
||||||
onCancel: () => {
|
onCancel: () => {
|
||||||
this.$refs.desc.updateContent(this.taskContent);
|
this.$refs.desc.updateContent(this.taskContent);
|
||||||
|
this.$refs.desc.updateTouchContent();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
|||||||
33
resources/assets/sass/components/t-editor.scss
vendored
33
resources/assets/sass/components/t-editor.scss
vendored
@ -1,13 +1,14 @@
|
|||||||
.teditor-box,
|
body {
|
||||||
.teditor-transfer {
|
.teditor-box,
|
||||||
|
.teditor-transfer {
|
||||||
.tox {
|
.tox {
|
||||||
&.tox-silver-sink {
|
&.tox-silver-sink {
|
||||||
z-index: 13000;
|
z-index: 13000;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.teditor-box {
|
.teditor-box {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 22px;
|
min-height: 22px;
|
||||||
|
|
||||||
@ -53,11 +54,22 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.teditor-transfer {
|
.teditor-transfer {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
|
|
||||||
|
.ivu-modal-wrap {
|
||||||
|
.ivu-modal {
|
||||||
|
&.ivu-modal-fullscreen {
|
||||||
|
.ivu-modal-content {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.tox-toolbar {
|
.tox-toolbar {
|
||||||
> div:last-child {
|
> div:last-child {
|
||||||
> button:last-child {
|
> button:last-child {
|
||||||
@ -71,16 +83,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ivu-modal-close {
|
.ivu-modal-close {
|
||||||
top: 7px;
|
top: calc(var(--status-bar-height) + 7px);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.teditor-transfer-body {
|
.teditor-transfer-body {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: var(--status-bar-height);
|
||||||
|
bottom: var(--navigation-bar-height);
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
right: 0;
|
||||||
height: 100%;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
@ -112,6 +124,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.teditor-loadstyle {
|
.teditor-loadstyle {
|
||||||
|
|||||||
@ -41,9 +41,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.task-info {
|
||||||
|
.scroller {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.task-dialog {
|
.task-dialog {
|
||||||
padding-bottom: calc(var(--navigation-bar-height) + 20px);
|
padding-bottom: calc(var(--navigation-bar-height) + 20px);
|
||||||
margin-top: 4px;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user