cleanup css
This commit is contained in:
@@ -302,7 +302,7 @@ function removeTelemetry(index: number) {
|
||||
}
|
||||
|
||||
.column.tiny_text {
|
||||
font-size: variables.$normal-text-size / 2;
|
||||
font-size: calc(variables.$normal-text-size / 2);
|
||||
height: 100%;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
@@ -18,22 +18,20 @@ defineProps<{
|
||||
>
|
||||
<template v-for="y in charts[0].length" :key="y">
|
||||
<template v-for="x in charts.length" :key="x">
|
||||
<div class="no-min-height">
|
||||
<SvgGraph
|
||||
right_axis
|
||||
cursor
|
||||
:legend="GraphSide.Left"
|
||||
include_controls
|
||||
>
|
||||
<GraphAxis>
|
||||
<TelemetryLine
|
||||
v-for="tlm in charts[x - 1][y - 1]"
|
||||
:key="tlm.uuid"
|
||||
:data="tlm.name"
|
||||
></TelemetryLine>
|
||||
</GraphAxis>
|
||||
</SvgGraph>
|
||||
</div>
|
||||
<SvgGraph
|
||||
right_axis
|
||||
cursor
|
||||
:legend="GraphSide.Left"
|
||||
include_controls
|
||||
>
|
||||
<GraphAxis>
|
||||
<TelemetryLine
|
||||
v-for="tlm in charts[x - 1][y - 1]"
|
||||
:key="tlm.uuid"
|
||||
:data="tlm.name"
|
||||
></TelemetryLine>
|
||||
</GraphAxis>
|
||||
</SvgGraph>
|
||||
</template>
|
||||
</template>
|
||||
</div>
|
||||
|
||||
@@ -17,15 +17,15 @@ function closeSettings() {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="column stretch screen content full center divider">
|
||||
<div class="column stretch screen content tall wide">
|
||||
<template v-if="!settingsOpen">
|
||||
<div class="settings column center" @click="openSettings">
|
||||
<div class="settings column" @click="openSettings">
|
||||
<InlineIcon icon="hamburger menu"></InlineIcon>
|
||||
</div>
|
||||
<ChartRenderView :charts="settings"></ChartRenderView>
|
||||
</template>
|
||||
<template v-else>
|
||||
<div class="settings column center" @click="closeSettings">
|
||||
<div class="settings column" @click="closeSettings">
|
||||
<InlineIcon icon="close"></InlineIcon>
|
||||
</div>
|
||||
<ChartDefinitionView v-model="settings"></ChartDefinitionView>
|
||||
|
||||
@@ -30,7 +30,7 @@ function onEnter() {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="column stretch screen content center no-min-height">
|
||||
<div class="column stretch screen limited content page">
|
||||
<div class="row">
|
||||
<TextInput
|
||||
autofocus
|
||||
@@ -41,7 +41,7 @@ function onEnter() {
|
||||
></TextInput>
|
||||
</div>
|
||||
|
||||
<div class="row grow stretch">
|
||||
<div class="row grow stretch no-min-height">
|
||||
<div class="column grow scroll no-min-height">
|
||||
<PanelHeirarchy
|
||||
:heirarchy="filtered_heirarchy"
|
||||
|
||||
@@ -6,32 +6,39 @@ import SvgGraph from '@/components/SvgGraph.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div style="width: 100vw; height: 50vh">
|
||||
<SvgGraph :legend="GraphSide.Left" right_axis include_controls cursor>
|
||||
<Axis>
|
||||
<Line data="simple_producer/time_offset"></Line>
|
||||
<Line data="simple_producer/publish_offset"></Line>
|
||||
<Line data="simple_producer/await_offset"></Line>
|
||||
</Axis>
|
||||
</SvgGraph>
|
||||
</div>
|
||||
<div style="width: 100vw; height: 50vh">
|
||||
<SvgGraph
|
||||
:initial_duration="60 * 1000 * 10"
|
||||
:legend="GraphSide.Right"
|
||||
right_axis
|
||||
>
|
||||
<Axis>
|
||||
<Line data="simple_producer/sin"></Line>
|
||||
<Line data="simple_producer/cos4"></Line>
|
||||
<Line data="simple_producer/sin2"></Line>
|
||||
<Line data="simple_producer/cos"></Line>
|
||||
<Line data="simple_producer/sin3"></Line>
|
||||
<Line data="simple_producer/cos2"></Line>
|
||||
<Line data="simple_producer/sin4"></Line>
|
||||
<Line data="simple_producer/cos3"></Line>
|
||||
</Axis>
|
||||
</SvgGraph>
|
||||
<div class="column">
|
||||
<div style="width: 100vw; height: 50vh">
|
||||
<SvgGraph
|
||||
:legend="GraphSide.Left"
|
||||
right_axis
|
||||
include_controls
|
||||
cursor
|
||||
>
|
||||
<Axis>
|
||||
<Line data="simple_producer/time_offset"></Line>
|
||||
<Line data="simple_producer/publish_offset"></Line>
|
||||
<Line data="simple_producer/await_offset"></Line>
|
||||
</Axis>
|
||||
</SvgGraph>
|
||||
</div>
|
||||
<div style="width: 100vw; height: 50vh">
|
||||
<SvgGraph
|
||||
:initial_duration="60 * 1000 * 10"
|
||||
:legend="GraphSide.Right"
|
||||
right_axis
|
||||
>
|
||||
<Axis>
|
||||
<Line data="simple_producer/sin"></Line>
|
||||
<Line data="simple_producer/cos4"></Line>
|
||||
<Line data="simple_producer/sin2"></Line>
|
||||
<Line data="simple_producer/cos"></Line>
|
||||
<Line data="simple_producer/sin3"></Line>
|
||||
<Line data="simple_producer/cos2"></Line>
|
||||
<Line data="simple_producer/sin4"></Line>
|
||||
<Line data="simple_producer/cos3"></Line>
|
||||
</Axis>
|
||||
</SvgGraph>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ const mousedover = ref<TelemetryDefinition | null>(null);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="row stretch screen content center divider">
|
||||
<div class="row stretch screen limited content">
|
||||
<div class="column grow2 stretch no-min-height no-basis">
|
||||
<div class="row">
|
||||
<TextInput
|
||||
|
||||
Reference in New Issue
Block a user