Skip to content

Commit

Permalink
💄 Darken the highlight color
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZhang73 committed Jan 18, 2024
1 parent 67a0f82 commit 7f132d4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pages/annotation/ActionTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
<q-tr
:class="{
'bg-warning': props.row.end - props.row.start <= 0,
'bg-green-2': props.row === annotationStore.currentThumbnailAction
'bg-green-2': props.row === annotationStore.currentThumbnailAction && !q.dark.isActive,
'bg-green-8': props.row === annotationStore.currentThumbnailAction && q.dark.isActive
}"
>
<q-tooltip
Expand Down Expand Up @@ -229,17 +230,20 @@
</template>

<script setup>
import { useQuasar } from 'quasar'
import { computed, onMounted, onUnmounted, ref } from 'vue'
import ActionThumbnailPreview from '~/components/ActionThumbnailPreview.vue'
import { ActionAnnotation } from '~/libs/annotationlib.js'
import utils from '~/libs/utils.js'
import { useAnnotationStore } from '~/store/annotation.js'
import { useConfigurationStore } from '~/store/configuration.js'
import { useMainStore } from '~/store/index.js'
import ActionThumbnailPreview from '~/components/ActionThumbnailPreview.vue'
const annotationStore = useAnnotationStore()
const configurationStore = useConfigurationStore()
const mainStore = useMainStore()
const q = useQuasar()
const columnList = [
{
Expand Down

0 comments on commit 7f132d4

Please sign in to comment.