Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
Adds smooth scrolling to settings jumps
main
Eric Amodio
há 6 anos
ascendente
edb0a17516
cometimento
6483c19e7c
2 ficheiros alterados
com
5 adições
e
5 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+1
-1
src/ui/scss/main.scss
+4
-4
src/ui/shared/app-base.ts
+ 1
- 1
src/ui/scss/main.scss
Ver ficheiro
@ -878,7 +878,7 @@ ul {
.
section-group__content
{
flex
:
auto
1
1
;
margin-bottom
:
5
0
%
;
margin-bottom
:
10
0
%
;
min-width
:
0
;
}
+ 4
- 4
src/ui/shared/app-base.ts
Ver ficheiro
@ -171,11 +171,11 @@ export abstract class App
{
height
=
header
.
clientHeight
;
}
el
.
scrollIntoView
(
{
block
:
'start'
,
behavior
:
'auto'
const
top
=
el
.
getBoundingClientRect
(
)
.
top
-
document
.
body
.
getBoundingClientRect
(
)
.
top
-
height
;
window
.
scrollTo
(
{
top
:
top
,
behavior
:
'smooth'
}
)
;
window
.
scrollBy
(
0
,
-
height
)
;
e
.
stopPropagation
(
)
;
e
.
preventDefault
(
)
;
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar