diff options
author | Saiwal K <sk@utsukta.org> | 2024-11-17 19:59:31 +0000 |
---|---|---|
committer | Saiwal K <sk@utsukta.org> | 2024-11-17 19:59:31 +0000 |
commit | c626985448e13b80fedb4c561f82b8d26bf8b282 (patch) | |
tree | f925cbf672493223228d8a8f4d074037d035425a | |
parent | 586cda51558502ae88f9b64ef7a43a6b90da28c2 (diff) | |
download | volse-hubzilla-c626985448e13b80fedb4c561f82b8d26bf8b282.tar.gz volse-hubzilla-c626985448e13b80fedb4c561f82b8d26bf8b282.tar.bz2 volse-hubzilla-c626985448e13b80fedb4c561f82b8d26bf8b282.zip |
Update chat.tpl to correct expand and contract icons from forkawesome to bootstrap icons.
-rw-r--r-- | view/tpl/chat.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl index 620839ec8..cb88be7e8 100644 --- a/view/tpl/chat.tpl +++ b/view/tpl/chat.tpl @@ -8,8 +8,8 @@ <button class="btn btn-danger btn-sm" type="submit" name="submit" value="{{$drop}}" onclick="return confirmDelete();"><i class="bi bi-trash"></i> {{$drop}}</button> </form> {{/if}} - <button id="fullscreen-btn" type="button" class="btn btn-outline-secondary btn-sm" onclick="makeFullScreen(); adjustFullscreenTopBarHeight();"><i class="bi fa-expand"></i></button> - <button id="inline-btn" type="button" class="btn btn-outline-secondary btn-sm" onclick="makeFullScreen(false); adjustInlineTopBarHeight();"><i class="bi fa-compress"></i></button> + <button id="fullscreen-btn" type="button" class="btn btn-outline-secondary btn-sm" onclick="makeFullScreen(); adjustFullscreenTopBarHeight();"><i class="bi bi-arrows-angle-expand"></i></button> + <button id="inline-btn" type="button" class="btn btn-outline-secondary btn-sm" onclick="makeFullScreen(false); adjustInlineTopBarHeight();"><i class="bi bi-arrows-angle-contract"></i></button> </div> <h2>{{$room_name}}</h2> <div class="clear"></div> |