From 7fc6eddb1af7be17b3eb461ff86e68802bf64a57 Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Sun, 16 May 2021 18:04:26 -0700 Subject: [PATCH] Rename Footer Bar -> Status Bar --- .../web/src/components/window/MainWindow.vue | 10 +++++----- .../{footer-bar => status-bar}/InputHint.vue | 0 .../StatusBar.vue} | 20 ++----------------- 3 files changed, 7 insertions(+), 23 deletions(-) rename client/web/src/components/window/{footer-bar => status-bar}/InputHint.vue (100%) rename client/web/src/components/window/{footer-bar/FooterBar.vue => status-bar/StatusBar.vue} (82%) diff --git a/client/web/src/components/window/MainWindow.vue b/client/web/src/components/window/MainWindow.vue index e96a4faed..899eeae91 100644 --- a/client/web/src/components/window/MainWindow.vue +++ b/client/web/src/components/window/MainWindow.vue @@ -6,8 +6,8 @@ - - + + @@ -27,7 +27,7 @@ height: 100%; } -.footer-bar { +.status-bar { height: 24px; flex: 0 0 auto; } @@ -39,7 +39,7 @@ import LayoutRow from "../layout/LayoutRow.vue"; import LayoutCol from "../layout/LayoutCol.vue"; import PanelArea from "../panel-system/PanelArea.vue"; import TitleBar from "./title-bar/TitleBar.vue"; -import FooterBar from "./footer-bar/FooterBar.vue"; +import StatusBar from "./status-bar/StatusBar.vue"; export enum ApplicationPlatform { "Windows" = "Windows", @@ -54,7 +54,7 @@ export default defineComponent({ LayoutCol, TitleBar, PanelArea, - FooterBar, + StatusBar, }, data() { return { diff --git a/client/web/src/components/window/footer-bar/InputHint.vue b/client/web/src/components/window/status-bar/InputHint.vue similarity index 100% rename from client/web/src/components/window/footer-bar/InputHint.vue rename to client/web/src/components/window/status-bar/InputHint.vue diff --git a/client/web/src/components/window/footer-bar/FooterBar.vue b/client/web/src/components/window/status-bar/StatusBar.vue similarity index 82% rename from client/web/src/components/window/footer-bar/FooterBar.vue rename to client/web/src/components/window/status-bar/StatusBar.vue index a05fcaa1e..0ca250fcb 100644 --- a/client/web/src/components/window/footer-bar/FooterBar.vue +++ b/client/web/src/components/window/status-bar/StatusBar.vue @@ -1,5 +1,5 @@