diff --git a/src/KekRozsak/FrontBundle/Resources/views/Forum/post_list.html.twig b/src/KekRozsak/FrontBundle/Resources/views/Forum/post_list.html.twig
index d337a7a..757a7b5 100644
--- a/src/KekRozsak/FrontBundle/Resources/views/Forum/post_list.html.twig
+++ b/src/KekRozsak/FrontBundle/Resources/views/Forum/post_list.html.twig
@@ -3,19 +3,17 @@
{% block content %}
{% if topic.posts|length > 0 %}
-
-
-
+
{% for post in topic.posts %}
-
+ | {{ post.text|raw }} |
+
{{ post.createdBy.displayName }}
{{ post.createdAt|date('Y-m-d H:i') }}
- Admin
+ Szint
Tagság kezdete: {{ post.createdBy.RegisteredAt|date('Y-m-d') }}
|
- {{ post.text }} |
{% endfor %}
diff --git a/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_group_list.html.twig b/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_group_list.html.twig
index 1e43569..d04793f 100644
--- a/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_group_list.html.twig
+++ b/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_group_list.html.twig
@@ -3,7 +3,7 @@
{% block content %}
Fórum
{% for topicGroup in topicGroups %}
-
+
{{ topicGroup.title }} |
@@ -15,8 +15,8 @@
{% if topicGroup.topics|length > 0 %}
{% for topic in topicGroup.topics %}
-
- [] |
+
+ [ikon] |
{{ topic.title }} |
|
|
diff --git a/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_list.html.twig b/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_list.html.twig
index 7697feb..b29f50f 100644
--- a/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_list.html.twig
+++ b/src/KekRozsak/FrontBundle/Resources/views/Forum/topic_list.html.twig
@@ -3,12 +3,15 @@
{% block content %}
Fórum - {{ topicGroup.title }}
{% if topicGroup.topics|length > 0 %}
-
+
+
+ |
+
{% for topic in topicGroup.topics %}
-
+
{{ topic.title }} |
{% endfor %}
diff --git a/web/css/kekrozsak_front.css b/web/css/kekrozsak_front.css
index 39649cd..643b084 100644
--- a/web/css/kekrozsak_front.css
+++ b/web/css/kekrozsak_front.css
@@ -74,7 +74,7 @@ body {
#hirek {
float: left;
- color: #ddddff;
+ color: #aaaacc;
width: 215px;
}
@@ -110,32 +110,72 @@ p.hir-datum {
margin: 0;
}
-#temakor-lista {
+h3 a {
+ color: #3366ff;
+ text-decoration: none;
+}
+
+.forum-lista {
border: 1px solid #3366ff;
border-collapse: collapse;
width: 100%;
- margin-bottom: 10px;
+ margin-bottom: 20px;
}
-#temakor-lista thead td {
+.forum-lista thead td {
font-weight: bold;
height: 1.5em;
border-bottom: 2px solid #3366ff;
padding: 3px;
}
-#temakor-lista thead td a {
+.forum-lista thead td a {
color: #3366ff;
text-decoration: none;
}
-#temakor-lista tbody td {
- padding: 3px;
+.forum-lista tbody td {
+ padding: 5px;
border-bottom: 1px solid #3366ff;
}
-#temakor-lista tbody td a {
+.forum-lista tbody tr.odd td {
+ background-color: #001144;
+}
+
+.forum-lista tbody tr.even td {
+ background-color: #000000;
+}
+
+.forum-lista tbody td a {
color: #3366ff;
text-decoration: underline;
}
+.post-lista {
+ border: 1px solid #3366ff;
+ border-collapse: collapse;
+}
+
+.post-lista td {
+ border-style: solid;
+ border-color: #3366ff;
+ border-width: 3px 1px;
+ vertical-align: top;
+ padding: 5px;
+}
+
+.post-lista td.felado {
+ width: 150px !important;
+ font-size: 80%;
+}
+
+.post-lista td.szoveg {
+ width: 510px;
+}
+
+.post-lista td.szoveg div {
+ width: 510px;
+ overflow: auto;
+}
+