Skip to content

Commit 11de389

Browse files
authored
Merge pull request #2280 from OpenC3/misc-cleanup
Misc cleanup
2 parents dfd0067 + cca95aa commit 11de389

File tree

11 files changed

+618
-591
lines changed

11 files changed

+618
-591
lines changed

openc3-cosmos-init/plugins/packages/openc3-cosmos-tool-dataviewer/src/tools/DataViewer/DataViewer.vue

Lines changed: 202 additions & 222 deletions
Large diffs are not rendered by default.

openc3-cosmos-init/plugins/packages/openc3-cosmos-tool-tlmgrapher/src/tools/TlmGrapher/TlmGrapher.vue

Lines changed: 3 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<top-bar :menus="menus" :title="title" />
2525
<v-expansion-panels v-model="panel" class="expansion">
2626
<v-expansion-panel>
27-
<v-expansion-panel-title style="z-index: 1"></v-expansion-panel-title>
27+
<v-expansion-panel-title class="pulse-i"></v-expansion-panel-title>
2828
<v-expansion-panel-text>
2929
<div v-if="selectedGraphId === null">
3030
<v-row class="my-5">
@@ -55,7 +55,7 @@
5555
<v-col style="max-width: 140px">
5656
<v-btn
5757
v-show="state === 'pause'"
58-
class="pulse"
58+
class="blink"
5959
color="primary"
6060
data-test="start-graph"
6161
icon="mdi-play"
@@ -618,24 +618,6 @@ export default {
618618
}
619619
</script>
620620

621-
<style>
622-
/* Flash the chevron icon 3 times to let the user know they can minimize the controls */
623-
i.v-icon.mdi-chevron-down {
624-
animation: pulse 2s 3;
625-
}
626-
@keyframes pulse {
627-
0% {
628-
-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
629-
}
630-
70% {
631-
-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
632-
}
633-
100% {
634-
-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
635-
}
636-
}
637-
</style>
638-
639621
<style lang="scss" scoped>
640622
.expansion {
641623
background-color: var(--color-background-base-default) !important;
@@ -658,6 +640,7 @@ i.v-icon.mdi-chevron-down {
658640
}
659641
}
660642
.v-expansion-panel-title {
643+
z-index: 1;
661644
min-height: 10px;
662645
padding: 5px;
663646
}
@@ -689,17 +672,4 @@ i.v-icon.mdi-chevron-down {
689672
border-radius: 6px;
690673
margin: 6px;
691674
}
692-
.pulse {
693-
animation: pulse 1s infinite;
694-
}
695-
696-
@keyframes pulse {
697-
0% {
698-
opacity: 1;
699-
}
700-
701-
50% {
702-
opacity: 0.5;
703-
}
704-
}
705675
</style>

0 commit comments

Comments
 (0)