Dataset table: increase height using vh unit #945
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Proposta para aumentar a quantidade de linhas na tabela de acesso aos dados. Atualmente mostra cinco linhas.
O problema de meu ponto de visto é quando tem muitas linhas.
maxHeight
foi fixado em300px
, então vc tem uma área pequena e a rolagem fica sensível (scrollbar pequena). Isso cansa um pouco os olhos pq tem que rolar pouco e devagar para não passar por várias linhas.Adicionei uma altura máxima
maxHeight
variável (vh
) no atributostyle
do elemento porque usei a unidadevh
(viewport height). No attr do elemento tem prioridade maior, se o navegador não suportarvh
,maxHeight: 300px
continua lá como fallback.Se o navegador suportar (grande maioria), a altura máxima vai ser
50%
na altura da janela.Atualmente:
Com essa alteração: