notification: minor color tweak

This commit is contained in:
Your Name 2024-04-20 14:05:59 -04:00 committed by Henri Dickson
parent bafb7c5f3a
commit bcd9a63c39
5 changed files with 21 additions and 16 deletions

View file

@ -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 {

View file

@ -17,7 +17,7 @@
return this;
};
</script>
<script src="{{ cdn_url }}/npm/htmx.org@1.9.11/dist/htmx.min.js"></script>
<script src="{{ cdn_url }}/npm/htmx.org@1.9.12/dist/htmx.min.js"></script>
<script src="{{ cdn_url }}/npm/hyperscript.org@0.9.12"></script>
<link rel="stylesheet"
href="{{ cdn_url }}/npm/@picocss/pico@2/css/pico.min.css" />

View file

@ -1,13 +1,13 @@
{% load i18n %}
{% load bleach_tags %}
{% trans 'requested to follow you' %}
<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"
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">
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
</blockquote>

View file

@ -1,13 +1,13 @@
{% load i18n %}
{% load bleach_tags %}
{% trans 'followed you' %}
<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"
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">
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
</blockquote>

View file

@ -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>