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 | 331 | li[data-mural] { |
| 332 | 332 | font-size: 13px; |
| 333 | 333 | } |
| 334 | + .post-icon { | |
| 335 | + font-size: 32px !important; | |
| 336 | + } | |
| 334 | 337 | |
| 335 | 338 | } |
| 336 | 339 | @media(max-width:610px){ |
| ... | ... | @@ -351,6 +354,9 @@ |
| 351 | 354 | text-align: center; |
| 352 | 355 | font-size: 1em; |
| 353 | 356 | } |
| 357 | + .post-icon { | |
| 358 | + font-size: 32px !important; | |
| 359 | + } | |
| 354 | 360 | } |
| 355 | 361 | |
| 356 | 362 | @media(min-width: 500px) { | ... | ... |
| ... | ... | @@ -7,19 +7,19 @@ |
| 7 | 7 | <form id="post-form" method="post" action="{{ form_url }}" enctype="multipart/form-data"> |
| 8 | 8 | {% csrf_token %} |
| 9 | 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 | 11 | <label for="{{ form.action.0.id_for_label }}" class="text-center post_action"> |
| 12 | 12 | <span class="radio"> |
| 13 | - <i class="fa fa-commenting-o"></i> | |
| 13 | + <i class="fa fa-commenting-o post-icon"></i> | |
| 14 | 14 | <br clear="all" /> |
| 15 | 15 | {{ form.action.0 }} |
| 16 | 16 | </span> |
| 17 | 17 | </label> |
| 18 | 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 | 20 | <label for="{{ form.action.1.id_for_label }}" class="text-center post_action"> |
| 21 | 21 | <span class="radio"> |
| 22 | - <i class="fa fa-comments-o"></i> | |
| 22 | + <i class="fa fa-comments-o post-icon"></i> | |
| 23 | 23 | <br clear="all" /> |
| 24 | 24 | {{ form.action.1 }} |
| 25 | 25 | </span> |
| ... | ... | @@ -81,7 +81,7 @@ |
| 81 | 81 | <span id="helpBlock" class="help-block">{{ form.image.help_text }}</span> |
| 82 | 82 | |
| 83 | 83 | </div> |
| 84 | - | |
| 84 | + | |
| 85 | 85 | {% if form.image.errors %} |
| 86 | 86 | <div class="alert alert-danger alert-dismissible" role="alert"> |
| 87 | 87 | <button type="button" class="close" data-dismiss="alert" aria-label="Close"> |
| ... | ... | @@ -175,7 +175,7 @@ |
| 175 | 175 | |
| 176 | 176 | $(".client-file-errors").show(); |
| 177 | 177 | $(".size").show(); |
| 178 | - } | |
| 178 | + } | |
| 179 | 179 | |
| 180 | 180 | if (!f.type.match(/^image\//)) { |
| 181 | 181 | $("#button").prop('disable', true); | ... | ... |