mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
no message
This commit is contained in:
parent
7c94f6bc9a
commit
569912abef
@ -96,7 +96,7 @@ services:
|
||||
appstore:
|
||||
container_name: "dootask-appstore-${APP_ID}"
|
||||
privileged: true
|
||||
image: "dootask/appstore:0.2.7"
|
||||
image: "dootask/appstore:0.2.8"
|
||||
volumes:
|
||||
- shared_data:/usr/share/dootask
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
4
electron/render/tabs/assets/css/style.css
vendored
4
electron/render/tabs/assets/css/style.css
vendored
@ -243,7 +243,7 @@ body {
|
||||
/* 不同平台样式 */
|
||||
body.win32 .nav {
|
||||
padding-left: 8px;
|
||||
padding-right: 186px;
|
||||
padding-right: 140px;
|
||||
}
|
||||
|
||||
body.darwin .nav {
|
||||
@ -275,4 +275,4 @@ body.darwin.full-screen .nav {
|
||||
.tab-icon.background {
|
||||
background-image: url(../image/dark/link_normal_icon.png);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1377,10 +1377,12 @@ export default {
|
||||
if ($A.isIos() && list.length !== historyLength && this.$refs.scroller) {
|
||||
// 隐藏区域,让iOS断触
|
||||
const scrollEl = this.$refs.scroller.$el
|
||||
scrollEl.style.visibility = 'hidden'
|
||||
scrollEl.style.overflowY = 'hidden'
|
||||
scrollEl.style.webkitOverflowScrolling = 'auto'
|
||||
this.allMsgs = list;
|
||||
this.$nextTick(_ => {
|
||||
scrollEl.style.visibility = 'visible'
|
||||
requestAnimationFrame(_ => {
|
||||
scrollEl.style.overflowY = 'auto'
|
||||
scrollEl.style.webkitOverflowScrolling = 'touch'
|
||||
})
|
||||
} else {
|
||||
this.allMsgs = list;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user