Skip to content

Commit

Permalink
modified pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ashfaq1934 committed Jul 1, 2023
1 parent 57a60c0 commit 96eff2d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 0 additions & 4 deletions project/core/templates/static/less/utils.less
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,6 @@

@box-shadow-z1: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);

.nowrap{
white-space: nowrap;
}

.dropdown-menu-wrapper{
display: block;
margin-top: -12px;
Expand Down
6 changes: 3 additions & 3 deletions project/threads/templates/threads/feed.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@
<div class="stats gray-text">
<div class="col center-align s2">
<span class="material-icons container">remove_red_eye</span>
<span class="nowrap">{{ thread.stats.num_views }} Views</span>
<span style="white-space: nowrap;">{{ thread.stats.num_views }} Views</span>
</div>
<div class="col center-align s2">
<span class="material-icons container">question_answer</span>
<span class="nowrap">{{ thread.stats.num_civis }} Civis</span>
<span style="white-space: nowrap;">{{ thread.stats.num_civis }} Civis</span>
</div>
<div class="col center-align s2">
<span class="material-icons container">emoji_objects</span>
<span class="nowrap">{{ thread.stats.num_solutions }} Solutions</span>
<span style="white-space: nowrap;">{{ thread.stats.num_solutions }} Solutions</span>
</div>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion project/threads/templates/threads/thread.html
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@
</div>
<div class="new-civi-card" style="display: none">
<div class="civi-body">
<div class="link-lato center">ADD RESPONSE</div>
<form action="{% url 'civi-create' thread.id %}" method="POST">
{% csrf_token %}
<div class="input-field">
Expand Down Expand Up @@ -745,7 +746,7 @@
</div>
</div>
<div class="civi-footer">
<button class="waves-effect waves-light btn create-new-response" type="submit">add response</button>
<button class="waves-effect waves-light btn create-new-response purple-background" type="submit">add response</button>
<button class="waves-effect waves-cw-blue btn-flat cancel-new-response"
type="button">Cancel</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Pillow = "^9.2.0"
requests = "^2.28.1"
django-browser-reload = "^1.7.0"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
black = "^22.10.0"
coverage = "^6.4.4"
flake8 = "^5.0.4"

Expand Down

0 comments on commit 96eff2d

Please sign in to comment.