diff --git a/public/assets/css/replies/replies.css b/public/assets/css/replies/replies.css new file mode 100644 index 0000000000..c272c8e7ab --- /dev/null +++ b/public/assets/css/replies/replies.css @@ -0,0 +1,25 @@ +.main { + font-size: var(--medium-size); + border: none !important; +} +.note { + margin-bottom: 0; +} +#form div:nth-of-type(1) { + padding: var(--unit-size); +} +#form div:nth-of-type(1) textarea { + padding: var(--unit-size); + border-radius: var(--unit-size); + background-color: var(--bg1); + font-size: var(--unit-size); + width: 100%; + box-sizing: border-box; +} + +#form div:nth-of-type(3) button { + font-size: var(--medium-size) !important; + float: right; + margin-right: var(--unit-size); + margin-bottom: var(--unit-size); +} \ No newline at end of file diff --git a/templates/note/reply.html.twig b/templates/note/reply.html.twig index 1f0b93bc0c..20552ac9de 100644 --- a/templates/note/reply.html.twig +++ b/templates/note/reply.html.twig @@ -1,7 +1,14 @@ -{% extends '/base.html.twig' %} +{% extends 'left/left.html.twig' %} + +{% block meta %} + {{ parent() }} +{% endblock %} + +{% block title %}Welcome!{% endblock %} {% block stylesheets %} {{ parent() }} +