Commit 7b215765d91c38a706ca5f3d8324d54c2cdf0cf4
1 parent
89e8d3a0
Exists in
master
and in
2 other branches
Fix'd mural post icons size
Showing
2 changed files
with
12 additions
and
6 deletions
Show diff stats
amadeus/static/css/base/amadeus_responsive.css
@@ -331,6 +331,9 @@ | @@ -331,6 +331,9 @@ | ||
331 | li[data-mural] { | 331 | li[data-mural] { |
332 | font-size: 13px; | 332 | font-size: 13px; |
333 | } | 333 | } |
334 | + .post-icon { | ||
335 | + font-size: 32px !important; | ||
336 | + } | ||
334 | 337 | ||
335 | } | 338 | } |
336 | @media(max-width:610px){ | 339 | @media(max-width:610px){ |
@@ -351,6 +354,9 @@ | @@ -351,6 +354,9 @@ | ||
351 | text-align: center; | 354 | text-align: center; |
352 | font-size: 1em; | 355 | font-size: 1em; |
353 | } | 356 | } |
357 | + .post-icon { | ||
358 | + font-size: 32px !important; | ||
359 | + } | ||
354 | } | 360 | } |
355 | 361 | ||
356 | @media(min-width: 500px) { | 362 | @media(min-width: 500px) { |
@@ -7,19 +7,19 @@ | @@ -7,19 +7,19 @@ | ||
7 | <form id="post-form" method="post" action="{{ form_url }}" enctype="multipart/form-data"> | 7 | <form id="post-form" method="post" action="{{ form_url }}" enctype="multipart/form-data"> |
8 | {% csrf_token %} | 8 | {% csrf_token %} |
9 | <div class="row"> | 9 | <div class="row"> |
10 | - <div class="form-group{% if form.has_error %} has-error {% endif %} text-center col-md-6"> | 10 | + <div class="form-group{% if form.has_error %} has-error {% endif %} text-center col-md-6 col-xs-6 col-sm-6"> |
11 | <label for="{{ form.action.0.id_for_label }}" class="text-center post_action"> | 11 | <label for="{{ form.action.0.id_for_label }}" class="text-center post_action"> |
12 | <span class="radio"> | 12 | <span class="radio"> |
13 | - <i class="fa fa-commenting-o"></i> | 13 | + <i class="fa fa-commenting-o post-icon"></i> |
14 | <br clear="all" /> | 14 | <br clear="all" /> |
15 | {{ form.action.0 }} | 15 | {{ form.action.0 }} |
16 | </span> | 16 | </span> |
17 | </label> | 17 | </label> |
18 | </div> | 18 | </div> |
19 | - <div class="form-group{% if form.has_error %} has-error {% endif %} text-center col-md-6"> | 19 | + <div class="form-group{% if form.has_error %} has-error {% endif %} text-center col-md-6 col-xs-6 col-sm-6"> |
20 | <label for="{{ form.action.1.id_for_label }}" class="text-center post_action"> | 20 | <label for="{{ form.action.1.id_for_label }}" class="text-center post_action"> |
21 | <span class="radio"> | 21 | <span class="radio"> |
22 | - <i class="fa fa-comments-o"></i> | 22 | + <i class="fa fa-comments-o post-icon"></i> |
23 | <br clear="all" /> | 23 | <br clear="all" /> |
24 | {{ form.action.1 }} | 24 | {{ form.action.1 }} |
25 | </span> | 25 | </span> |
@@ -81,7 +81,7 @@ | @@ -81,7 +81,7 @@ | ||
81 | <span id="helpBlock" class="help-block">{{ form.image.help_text }}</span> | 81 | <span id="helpBlock" class="help-block">{{ form.image.help_text }}</span> |
82 | 82 | ||
83 | </div> | 83 | </div> |
84 | - | 84 | + |
85 | {% if form.image.errors %} | 85 | {% if form.image.errors %} |
86 | <div class="alert alert-danger alert-dismissible" role="alert"> | 86 | <div class="alert alert-danger alert-dismissible" role="alert"> |
87 | <button type="button" class="close" data-dismiss="alert" aria-label="Close"> | 87 | <button type="button" class="close" data-dismiss="alert" aria-label="Close"> |
@@ -175,7 +175,7 @@ | @@ -175,7 +175,7 @@ | ||
175 | 175 | ||
176 | $(".client-file-errors").show(); | 176 | $(".client-file-errors").show(); |
177 | $(".size").show(); | 177 | $(".size").show(); |
178 | - } | 178 | + } |
179 | 179 | ||
180 | if (!f.type.match(/^image\//)) { | 180 | if (!f.type.match(/^image\//)) { |
181 | $("#button").prop('disable', true); | 181 | $("#button").prop('disable', true); |