diff --git a/src/colab/deprecated/templates/home.html b/src/colab/deprecated/templates/home.html
index 762cae1..2717185 100644
--- a/src/colab/deprecated/templates/home.html
+++ b/src/colab/deprecated/templates/home.html
@@ -6,28 +6,27 @@
{% endblock %}
{% block header %}
-
+
-
{% trans "INTERLEGIS COMMUNITIES" %}
+
{% trans "INTERLEGIS COMMUNITIES" %}
{% endblock %}
{% block main-content %}
-
+
- {% trans "Latest collaborations" %}
+ {% trans "Latest Collaborations" %}
-
-
-
+
{% for doc in latest_docs %}
{% include "message-preview.html" %}
{% endfor %}
@@ -40,23 +39,22 @@
-
+
{% trans "Distribution of Collaborations" %}
-
+
- {% trans "Discussions Most Relevance" %}
+ {% trans "Most Relevant Discussions" %}
-
-
-
+
{% for thread in hottest_threads %}
{% include "message-preview.html" with doc=thread.latest_message %}
{% endfor %}
@@ -68,16 +66,15 @@
-
+
{% trans "Latest Discussions" %}
-
-
-
+
{% for thread in latest_threads %}
{% include "message-preview.html" with doc=thread.latest_message %}
{% endfor %}
diff --git a/src/colab/static/css/screen.css b/src/colab/static/css/screen.css
index b645e8a..6fb0361 100644
--- a/src/colab/static/css/screen.css
+++ b/src/colab/static/css/screen.css
@@ -4,6 +4,11 @@ body {
padding-top: 70px;
}
+/* better fit for xm and sm screens */
+h3 {
+ font-size: 160%;
+}
+
/* Header */
@@ -120,13 +125,18 @@ body {
.subject img {
margin-right: 5px;
}
-/* End of message-preview.html */
-.container {
- /* Overwritting max-width for better web responsive */
- /* max-width: 95% !important; */
+/* message-list (ul wrapping preview-message) */
+
+ul.message-list {
+ padding: 0;
}
+/* End of message-preview.html */
+
+
+
+
/* Forms */
.required label:before {
color: #f00;
@@ -151,14 +161,13 @@ form.signup div.submit {
background-image: url(../img/rss.png);
width: 16px;
height: 16px;
+ display: inline-block;
+ margin-left: 3px;
}
.column-align {
display: inline-block;
- margin-left: 20px;
- margin-top: 0;
- margin-bottom: 10px;
- vertical-align: middle;
+ margin-bottom: 20px;
}
#filters h4 {
--
libgit2 0.21.2