a touch more chat style
This commit is contained in:
parent
b7ec6b50d8
commit
040dc26a4d
|
@ -19,10 +19,14 @@
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
{{ if eq $target "" }}
|
{{ if eq $target "" }}
|
||||||
{{ $target = .Target }}
|
{{ $target = .Target }}
|
||||||
<p>chatter: {{ .Target }}
|
<p class="chattarget">
|
||||||
|
chatter: {{ .Target }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
<div class="chat">
|
||||||
<p>
|
<p>
|
||||||
{{ .Handle }}: {{ .HTML }}
|
<span class="chatstamp">{{ .Date.Format "15:04" }} {{ .Handle }}:</span>
|
||||||
|
{{ .HTML }}
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<form action="/sendchonk" method="POST">
|
<form action="/sendchonk" method="POST">
|
||||||
<input type="hidden" name="CSRF" value="{{ $chonkcsrf }}">
|
<input type="hidden" name="CSRF" value="{{ $chonkcsrf }}">
|
||||||
|
|
|
@ -188,6 +188,21 @@ input[type=file] {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chat {
|
||||||
|
border-bottom: 0.5px solid var(--fg-subtle);
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
.chat p {
|
||||||
|
margin-top: 0.2em;
|
||||||
|
margin-bottom: 0.2em;
|
||||||
|
}
|
||||||
|
.chattarget {
|
||||||
|
border-bottom: 1px solid var(--fg-subtle);
|
||||||
|
}
|
||||||
|
.chatstamp {
|
||||||
|
margin-left: -1em;
|
||||||
|
}
|
||||||
|
|
||||||
.honk #honkform {
|
.honk #honkform {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
border: 1px solid var(--fg);
|
border: 1px solid var(--fg);
|
||||||
|
|
Loading…
Reference in New Issue