Skip to content

Commit

Permalink
notification: minor color tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name authored and alphatownsman committed Apr 20, 2024
1 parent bafb7c5 commit bcd9a63
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions common/static/scss/_feed.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
padding-top: 0;
padding-bottom: 0;
margin: 0;
color: var(--pico-muted-color);

a {
color: var(--pico-muted-color);
}
}

p:last-child {
Expand Down
2 changes: 1 addition & 1 deletion common/templates/common_libs.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
return this;
};
</script>
<script src="{{ cdn_url }}/npm/[email protected].11/dist/htmx.min.js"></script>
<script src="{{ cdn_url }}/npm/[email protected].12/dist/htmx.min.js"></script>
<script src="{{ cdn_url }}/npm/[email protected]"></script>
<link rel="stylesheet"
href="{{ cdn_url }}/npm/@picocss/pico@2/css/pico.min.css" />
Expand Down
14 changes: 7 additions & 7 deletions social/templates/event/follow_requested.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% load i18n %}
{% load bleach_tags %}
{% trans 'requested to follow you' %}
<div>
<span class="action">{% include 'users/profile_actions.html' with show_home=1 identity=event.identity %}</span>
<code class="{{ event.identity.id }}_handler"
style="cursor:copy"
onmouseleave="$(this).removeAttr('data-tooltip')"
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ event.identity.full_handle }}</code>
</div>
<blockquote class="tldr" _="on click toggle .tldr on me">
<div>
<span class="action">{% include 'users/profile_actions.html' with show_home=1 identity=event.identity %}</span>
<code class="{{ event.identity.id }}_handler"
style="cursor:pointer"
onmouseleave="$(this).removeAttr('data-tooltip')"
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ event.identity.full_handle }}</code>
</div>
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
</blockquote>
14 changes: 7 additions & 7 deletions social/templates/event/followed.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% load i18n %}
{% load bleach_tags %}
{% trans 'followed you' %}
<div>
<span class="action">{% include 'users/profile_actions.html' with show_home=1 identity=event.identity %}</span>
<code class="{{ event.identity.id }}_handler"
style="cursor:copy"
onmouseleave="$(this).removeAttr('data-tooltip')"
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ event.identity.full_handle }}</code>
</div>
<blockquote class="tldr" _="on click toggle .tldr on me">
<div>
<span class="action">{% include 'users/profile_actions.html' with show_home=1 identity=event.identity %}</span>
<code class="{{ event.identity.id }}_handler"
style="cursor:pointer"
onmouseleave="$(this).removeAttr('data-tooltip')"
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ event.identity.full_handle }}</code>
</div>
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
</blockquote>
2 changes: 1 addition & 1 deletion users/templates/users/relationship_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p style="border-bottom: gray 1px dashed; padding-bottom:4px;">
<span class="action">{% include 'users/profile_actions.html' with show_home=1 %}</span>
<code class="{{ id }}_handler"
style="cursor:pointer"
style="cursor:copy"
onmouseleave="$(this).removeAttr('data-tooltip')"
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ identity.handle }}</code>
</p>
Expand Down

0 comments on commit bcd9a63

Please sign in to comment.