Rename Footer Bar -> Status Bar
This commit is contained in:
parent
5dc838079b
commit
11e408523a
|
|
@ -6,8 +6,8 @@
|
||||||
<LayoutRow :class="'panel-container'">
|
<LayoutRow :class="'panel-container'">
|
||||||
<PanelArea />
|
<PanelArea />
|
||||||
</LayoutRow>
|
</LayoutRow>
|
||||||
<LayoutRow :class="'footer-bar'">
|
<LayoutRow :class="'status-bar'">
|
||||||
<FooterBar />
|
<StatusBar />
|
||||||
</LayoutRow>
|
</LayoutRow>
|
||||||
</LayoutCol>
|
</LayoutCol>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-bar {
|
.status-bar {
|
||||||
height: 24px;
|
height: 24px;
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
}
|
}
|
||||||
|
|
@ -39,7 +39,7 @@ import LayoutRow from "../layout/LayoutRow.vue";
|
||||||
import LayoutCol from "../layout/LayoutCol.vue";
|
import LayoutCol from "../layout/LayoutCol.vue";
|
||||||
import PanelArea from "../panel-system/PanelArea.vue";
|
import PanelArea from "../panel-system/PanelArea.vue";
|
||||||
import TitleBar from "./title-bar/TitleBar.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 {
|
export enum ApplicationPlatform {
|
||||||
"Windows" = "Windows",
|
"Windows" = "Windows",
|
||||||
|
|
@ -54,7 +54,7 @@ export default defineComponent({
|
||||||
LayoutCol,
|
LayoutCol,
|
||||||
TitleBar,
|
TitleBar,
|
||||||
PanelArea,
|
PanelArea,
|
||||||
FooterBar,
|
StatusBar,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="hint-area footer-area">
|
<div class="status-bar">
|
||||||
<InputHint :inputMouse="'LMB'">Select Object</InputHint>
|
<InputHint :inputMouse="'LMB'">Select Object</InputHint>
|
||||||
<span class="plus">+</span>
|
<span class="plus">+</span>
|
||||||
<InputHint :inputKeys="['⇧']">Grow/Shrink Selection</InputHint>
|
<InputHint :inputKeys="['⇧']">Grow/Shrink Selection</InputHint>
|
||||||
|
|
@ -19,27 +19,11 @@
|
||||||
<InputHint :inputKeys="['Alt']" :inputMouse="'LMBDrag'">Move Duplicate</InputHint>
|
<InputHint :inputKeys="['Alt']" :inputMouse="'LMBDrag'">Move Duplicate</InputHint>
|
||||||
<InputHint :inputKeys="['Ctrl', 'D']">Duplicate</InputHint>
|
<InputHint :inputKeys="['Ctrl', 'D']">Duplicate</InputHint>
|
||||||
</div>
|
</div>
|
||||||
<div class="status-area footer-area">
|
|
||||||
<div>
|
|
||||||
<span>Graphite 0.0.1</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.footer-area {
|
.status-bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
&.hint-area {
|
|
||||||
flex: 1 1 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.status-area div {
|
|
||||||
margin: 0 8px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.plus {
|
.plus {
|
||||||
Loading…
Reference in New Issue