notification: minor color tweak
This commit is contained in:
parent
bafb7c5f3a
commit
bcd9a63c39
5 changed files with 21 additions and 16 deletions
|
@ -69,6 +69,11 @@
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
color: var(--pico-muted-color);
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--pico-muted-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p:last-child {
|
p:last-child {
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
return this;
|
return this;
|
||||||
};
|
};
|
||||||
</script>
|
</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>
|
<script src="{{ cdn_url }}/npm/hyperscript.org@0.9.12"></script>
|
||||||
<link rel="stylesheet"
|
<link rel="stylesheet"
|
||||||
href="{{ cdn_url }}/npm/@picocss/pico@2/css/pico.min.css" />
|
href="{{ cdn_url }}/npm/@picocss/pico@2/css/pico.min.css" />
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load bleach_tags %}
|
{% load bleach_tags %}
|
||||||
{% trans 'requested to follow you' %}
|
{% 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">
|
<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:"" }}
|
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load bleach_tags %}
|
{% load bleach_tags %}
|
||||||
{% trans 'followed you' %}
|
{% 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">
|
<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:"" }}
|
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<p style="border-bottom: gray 1px dashed; padding-bottom:4px;">
|
<p style="border-bottom: gray 1px dashed; padding-bottom:4px;">
|
||||||
<span class="action">{% include 'users/profile_actions.html' with show_home=1 %}</span>
|
<span class="action">{% include 'users/profile_actions.html' with show_home=1 %}</span>
|
||||||
<code class="{{ id }}_handler"
|
<code class="{{ id }}_handler"
|
||||||
style="cursor:pointer"
|
style="cursor:copy"
|
||||||
onmouseleave="$(this).removeAttr('data-tooltip')"
|
onmouseleave="$(this).removeAttr('data-tooltip')"
|
||||||
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ identity.handle }}</code>
|
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ identity.handle }}</code>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Add table
Reference in a new issue