From 8d21bc76eb8b779e655847c12d6c503c833764a4 Mon Sep 17 00:00:00 2001 From: Jayaram Pai Date: Sat, 3 May 2014 21:40:11 +0530 Subject: ignored question in filter added back with highlight --- static/website/css/main.css | 4 +++ static/website/templates/filter.html | 61 ++++-------------------------------- 2 files changed, 10 insertions(+), 55 deletions(-) (limited to 'static/website') diff --git a/static/website/css/main.css b/static/website/css/main.css index 4726635..467cea6 100644 --- a/static/website/css/main.css +++ b/static/website/css/main.css @@ -354,3 +354,7 @@ table .title a { .carousel .caption .btn { margin-top: 7px; } +.parent-filter { + background: #FDF5E6; + transition: background 2.5s ease; +} diff --git a/static/website/templates/filter.html b/static/website/templates/filter.html index 7496c0c..1397b26 100644 --- a/static/website/templates/filter.html +++ b/static/website/templates/filter.html @@ -1,57 +1,5 @@ {% extends 'website/templates/base.html' %} {% block content %} -{% if question %} -
-
- {{ question.title }} -
- - - - {{ question.category }} - - - - - - - - {{ question.tutorial}} - - - - - - - - {{ question.minute_range }} min - - - - - - - - {{ question.second_range }} sec - - - - - - - - {{ question.date_created|date:"d-m-y" }}, {{ question.date_created|time }} - - - - - {{ question.user }} - - - -
-{% endif %} - {% if questions %}
These are the similar questions in: @@ -75,7 +23,7 @@
- +
@@ -86,7 +34,7 @@ {% for question in questions %} - +
FOSS Tutorial Min Answers User
{{ question.category|truncatechars:12 }} @@ -159,6 +107,9 @@ {% block javascript %} {% endblock %} -- cgit