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