diff options
author | Jayaram Pai | 2014-04-20 17:32:27 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-04-20 17:32:27 +0530 |
commit | 524107ea786adc4c0d35d0748b383bf2f0acb657 (patch) | |
tree | 6f377f75a0fcd4458fd5f2a0fb42f4109b4d9d93 /static/website/templates/get-question.html | |
parent | 3e2fd2e7e14f16a21928795bba91b5d1e87af3b3 (diff) | |
download | spoken-tutorial-forums-524107ea786adc4c0d35d0748b383bf2f0acb657.tar.gz spoken-tutorial-forums-524107ea786adc4c0d35d0748b383bf2f0acb657.tar.bz2 spoken-tutorial-forums-524107ea786adc4c0d35d0748b383bf2f0acb657.zip |
made basic responsiveness, minor css, glyph changes
Diffstat (limited to 'static/website/templates/get-question.html')
-rw-r--r-- | static/website/templates/get-question.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/static/website/templates/get-question.html b/static/website/templates/get-question.html index b746f00..524f6a4 100644 --- a/static/website/templates/get-question.html +++ b/static/website/templates/get-question.html @@ -9,7 +9,7 @@ <span class="saved hideme">saved</span> <div class="row"> - <div class="col-lg-12 question-wrapper"> + <div class="question-wrapper col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="question {% if user|can_edit:question %}editable{% endif %}"> <div class="title {% if user|can_edit:question %}title-editable{% endif %}"> {{ question.title }} @@ -96,7 +96,7 @@ {% for answer in answers %} <div class="row"> - <div class="col-lg-12 answer-wrapper"> + <div class="answer-wrapper col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="answer {% if user|can_edit:answer %}editable{% endif %}" id="answer{{answer.id}}"> <div class="body" id="body{{ answer.id }}"> @@ -123,7 +123,7 @@ </div> <!-- /.answer --> <div class="row"> - <div class="comments col-lg-11 pull-right"> + <div class="comments pull-right col-lg-11 col-md-11 col-sm-11 col-xs-11"> <!-- displaying comments --> {% for comment in answer.answercomment_set.all %} <div class="comment" id="comment{{ comment.id }}"> @@ -186,7 +186,7 @@ <form action="{% url 'website:question_answer' %}" method="POST"> {% csrf_token %} {% with WIDGET_ERROR_CLASS='field_error' %} <div class="row"> - <div class="col-lg-12"> + <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="form-group"> {% render_field form.question value=question.id %} <label for="id_body">Answer</label> @@ -225,7 +225,7 @@ <h5>Move the question to:</h5> <div class="row"> - <div class="col-lg-4 col-md-4 col-sm-4"> + <div class="col-lg-4 col-md-4 col-sm-4 col-xs-4"> <select id="id_category" class="form-control"> <option value="Advanced-C++">Advanced-C++</option> <option value="BASH">BASH</option> @@ -277,17 +277,17 @@ <option value="General">General FOSS</option> </select> </div> - <div class="col-lg-4 col-md-4 col-sm-4"> + <div class="col-lg-4 col-md-4 col-sm-4 col-xs-4"> <select id="id_tutorial" class="form-control" disabled> <option value="None">Select a Tutorial</option> </select> </div> - <div class="col-lg-2 col-md-2 col-sm-2"> + <div class="col-lg-2 col-md-2 col-sm-2 col-xs-2"> <select id="id_minute_range" class="form-control" disabled> <option value="None">min</option> </select> </div> - <div class="col-lg-2 col-md-2 col-sm-2"> + <div class="col-lg-2 col-md-2 col-sm-2 col-xs-2"> <select id="id_second_range" class="form-control" disabled> <option value="None">sec</option> </select> |