Commit cc99f79f74f4183244ecf909725aeb513ed9a066
Exists in
master
and in
39 other branches
Merge branch 'master' of github.com:TracyWebTech/colab
Showing
4 changed files
with
18 additions
and
2 deletions
Show diff stats
requirements.txt
src/static/css/screen.css
... | ... | @@ -247,6 +247,21 @@ ul.unstyled-list .glyphicon-chevron-right { |
247 | 247 | font-weight: bold; |
248 | 248 | } |
249 | 249 | |
250 | +.toggle-reply { | |
251 | + height: 10px; | |
252 | + line-height: 3px; | |
253 | + padding: 0px 5px 14px; | |
254 | + vertical-align: middle; | |
255 | + font-size: 20px; | |
256 | + background-color: #bbb; | |
257 | + border-color: #aaa; | |
258 | +} | |
259 | + | |
260 | +.toggle-reply:hover, | |
261 | +.toggle-reply:focus { | |
262 | + background-color: #aaa; | |
263 | + border-color: #999; | |
264 | + | |
250 | 265 | /* Converse JS */ |
251 | 266 | |
252 | 267 | #chatpanel form#converse-login { | ... | ... |
src/super_archives/templates/superarchives/tags/display_message.html
1 | 1 | {% for block in blocks %} |
2 | 2 | {% if block.is_reply %} |
3 | - <button class="btn btn-info btn-xs" onclick="$(this).next().toggle();">...</button> | |
3 | + <button class="btn btn-info btn-xs toggle-reply" onclick="$(this).next().toggle();">...</button> | |
4 | 4 | <div style="display: none; color: #707;">{% else %}<div>{% endif %}{{ block|safe|linebreaksbr }}</div> |
5 | 5 | {% endfor %} | ... | ... |
src/templates/base.html
... | ... | @@ -3,6 +3,7 @@ |
3 | 3 | <html> |
4 | 4 | <head> |
5 | 5 | {% block head %} |
6 | + <meta charset="UTF-8" /> | |
6 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> |
7 | 8 | |
8 | 9 | <link rel="stylesheet" href="{{ STATIC_URL }}third-party/bootstrap/css/bootstrap.min.css" type="text/css" media="screen, projection" /> | ... | ... |