diff options
author | Jonas Kohl | 2024-09-16 23:13:07 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-16 23:13:07 +0200 |
commit | e79ec21fc8c03262ca4e16b68c08705495b7d2e5 (patch) | |
tree | 0a550efa99577c52e23f19213ac4dcbd0ff044c8 /src/application/views | |
parent | f2a5f45355b83540dbb42b3a198a20ec354e0422 (diff) |
Theme stuff
Diffstat (limited to 'src/application/views')
-rw-r--r-- | src/application/views/form_addpost.php | 2 | ||||
-rw-r--r-- | src/application/views/form_newtopic.php | 2 | ||||
-rw-r--r-- | src/application/views/view_post.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/application/views/form_addpost.php b/src/application/views/form_addpost.php index 72dafe5..33b7281 100644 --- a/src/application/views/form_addpost.php +++ b/src/application/views/form_addpost.php @@ -26,5 +26,5 @@ if (($_formError = RequestUtils::getAndClearFormError()) !== null) { ]) ?></label> <input type="file" name="files[]" id="i_files" multiple accept="*/*"> </div> -<button type="submit" class="btn btn-success"><?= __("Post reply") ?></button> +<button type="submit" class="btn btn-success"><?= __("Post reply") ?> <span class="glyphicon glyphicon-send" aria-hidden="true"></span></button> </form> diff --git a/src/application/views/form_newtopic.php b/src/application/views/form_newtopic.php index a40f3a6..f701fbb 100644 --- a/src/application/views/form_newtopic.php +++ b/src/application/views/form_newtopic.php @@ -33,5 +33,5 @@ if (($_formError = RequestUtils::getAndClearFormError()) !== null) { ]) ?></label> <input type="file" name="files[]" id="i_files" multiple accept="*/*"> </div> -<button type="submit" class="btn btn-success"><?= __("Create topic") ?></button> +<button type="submit" class="btn btn-success"><?= __("Create topic") ?> <span class="glyphicon glyphicon-send" aria-hidden="true"></span></button> </form> diff --git a/src/application/views/view_post.php b/src/application/views/view_post.php index fe885bc..18be820 100644 --- a/src/application/views/view_post.php +++ b/src/application/views/view_post.php @@ -114,7 +114,7 @@ $is_op = $postAuthor?->id === $topicAuthor?->id && $postAuthor?->id !== null; <?php if (!$canViewAttachments): ?> <span class="attachment-lock glyphicon glyphicon-ban-circle" aria-hidden="true"></span> <?php elseif (str_starts_with($attachment->mimeType, "video/")): ?> - <span class="video-player-icon glyphicon glyphicon-play" aria-hidden="true"></span> + <span class="video-player-icon glyphicon glyphicon-play-circle" aria-hidden="true"></span> <?php endif; ?> </a> <?php endif; ?> |