Commit 427fa9a946f66169947d352818e0bba97bb18ff2

Authored by Miguel Barão
1 parent 89e08ad8
Exists in master and in 1 other branch dev

- fixed university logo blur

BUGS.md
1 1  
2 2 # BUGS
3 3  
4   -- image brand da universidade está esbatida.
5 4 - generators e correct scripts que durem muito tempo podem bloquear o loop do tornado?
6 5 - detect questions in questions.yaml without ref -> error ou generate default.
7 6 - topicos virtuais nao deveriam aparecer. na construção da árvore os sucessores seriam ligados directamente aos predecessores.
... ... @@ -12,7 +11,6 @@
12 11  
13 12 # TODO
14 13  
15   -- reportar comentarios após submeter.
16 14 - each topic only loads a sample of K questions (max) in random order.
17 15 - servir imagens/ficheiros.
18 16 - pertuntas tipo tristate: (sim, não, não sei
... ... @@ -30,6 +28,8 @@
30 28  
31 29 # FIXED
32 30  
  31 +- image brand da universidade está esbatida.
  32 +- reportar comentarios após submeter.
33 33 - error if demo.yaml has no topics
34 34 - update de fontawesome para versão 5.0.6.
35 35 - remover learn.css uma vez que nao é usado em lado nenhum?
... ...
static/logo_horizontal10.png

5.47 KB

templates/maintopics.html
... ... @@ -29,7 +29,7 @@
29 29 <body>
30 30 <nav class="navbar navbar-expand-sm fixed-top navbar-dark bg-primary">
31 31 <!-- <a class="navbar-brand" href="#"> -->
32   - <img src="/static/logo_horizontal10.png" class="navbar-brand" alt="UEvora">
  32 + <img src="/static/logo_horizontal.png" height="48" width="120" class="navbar-brand" alt="UEvora">
33 33 <!-- </a> -->
34 34 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
35 35 <span class="navbar-toggler-icon"></span>
... ...
templates/topic.html
... ... @@ -41,7 +41,7 @@
41 41 <!-- Navbar -->
42 42 <nav class="navbar navbar-expand-sm fixed-top navbar-dark bg-primary">
43 43 <!-- <a class="navbar-brand" href="#"> -->
44   - <img src="/static/logo_horizontal10.png" class="navbar-brand" alt="UEvora">
  44 + <img src="/static/logo_horizontal.png" height="48" width="120" class="navbar-brand" alt="UEvora">
45 45 <!-- </a> -->
46 46 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
47 47 <span class="navbar-toggler-icon"></span>
... ...