Commit 9c7c18dab395cfd4e129bf6aab4c2d1345673793
Committed by
Luciano Prestes
1 parent
1f430cd1
Exists in
master
and in
23 other branches
Added padding and color to result register
Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Showing
2 changed files
with
15 additions
and
1 deletions
Show diff stats
src/colab-spb-theme-plugin/colab_spb_theme/static/css/search.css
@@ -43,6 +43,15 @@ | @@ -43,6 +43,15 @@ | ||
43 | font-size: 14px; | 43 | font-size: 14px; |
44 | } | 44 | } |
45 | 45 | ||
46 | +.colab-search-results div.container div.row a { | ||
47 | + color: #172738; | ||
48 | + text-decoration: none; | ||
49 | +} | ||
50 | + | ||
51 | +.colab-search-results div.container div.row a:hover { | ||
52 | + text-decoration: none; | ||
53 | +} | ||
54 | + | ||
46 | .btn:hover { | 55 | .btn:hover { |
47 | color: white; | 56 | color: white; |
48 | } | 57 | } |
@@ -60,3 +69,8 @@ | @@ -60,3 +69,8 @@ | ||
60 | font-family: Arial; | 69 | font-family: Arial; |
61 | font-weight: bold; | 70 | font-weight: bold; |
62 | } | 71 | } |
72 | + | ||
73 | +.colab-result-register { | ||
74 | + display: block; | ||
75 | + padding-top: 40px; | ||
76 | +} |
src/colab-spb-theme-plugin/colab_spb_theme/templates/search/search.html
@@ -30,7 +30,7 @@ | @@ -30,7 +30,7 @@ | ||
30 | {% endblock %} | 30 | {% endblock %} |
31 | 31 | ||
32 | {% block main-content %} | 32 | {% block main-content %} |
33 | -<div class="search-results" style="width: 980px;margin: auto;"> | 33 | +<div class="colab-search-results" style="width: 980px;margin: auto;"> |
34 | 34 | ||
35 | <form accept-charset="UTF-8" action="/search/" method="get"> | 35 | <form accept-charset="UTF-8" action="/search/" method="get"> |
36 | <div class="container"> | 36 | <div class="container"> |