Skip to content

Commit

Permalink
plotter: Make color-pickers dark
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl committed Feb 6, 2025
1 parent 656c278 commit 4227705
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/components/widgets/Plotter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@
></div>
</div>
</template>
<v-card class="overflow-hidden" :style="interfaceStore.globalGlassMenuStyles">
<v-color-picker v-model="widget.options.backgroundColor" label="Background" hide-inputs />
</v-card>
<v-color-picker v-model="widget.options.backgroundColor" label="Background" hide-inputs theme="dark" />
</v-menu>
<v-menu :close-on-content-click="false">
<template #activator="{ props: colorPickerActivatorProps }">
Expand All @@ -64,9 +62,7 @@
></div>
</div>
</template>
<v-card class="overflow-hidden" :style="interfaceStore.globalGlassMenuStyles">
<v-color-picker v-model="widget.options.lineColor" label="Line" hide-inputs />
</v-card>
<v-color-picker v-model="widget.options.lineColor" label="Line" hide-inputs theme="dark" />
</v-menu>
<v-text-field
v-model.number="widget.options.lineThickness"
Expand Down Expand Up @@ -135,12 +131,10 @@ import {
unlistenToDataLakeVariablesInfoChanges,
} from '@/libs/actions/data-lake'
import { resetCanvas } from '@/libs/utils'
import { useAppInterfaceStore } from '@/stores/appInterface'
import { useWidgetManagerStore } from '@/stores/widgetManager'
import type { Widget } from '@/types/widgets'
import InteractionDialog from '../InteractionDialog.vue'
const interfaceStore = useAppInterfaceStore()
const widgetStore = useWidgetManagerStore()
Expand Down

0 comments on commit 4227705

Please # to comment.