7299_testToMaster #351

Merged
alexm merged 321 commits from 7299_testToMaster into master 2024-05-07 05:36:02 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 0f6c6cde91 - Show all commits

View File

@ -18,15 +18,15 @@ defineEmits(['update:selected']);
<template> <template>
<QChip <QChip
class="chip" class="chip glossy"
:selected="selected" :selected="selected"
:style="selected ? { backgroundColor: color } : null" :style="selected ? { backgroundColor: color } : null"
:text-color="selected ? 'white' : null"
@update:selected="$emit('update:selected', $event)" @update:selected="$emit('update:selected', $event)"
> >
<QAvatar <QAvatar
:color="color" :color="color"
:class="avatarClass" :class="avatarClass"
class="glossy"
:style="{ backgroundColor: color }" :style="{ backgroundColor: color }"
/> />
<slot /> <slot />
@ -35,6 +35,6 @@ defineEmits(['update:selected']);
<style scoped lang="scss"> <style scoped lang="scss">
.chip { .chip {
background-color: var(--vn-light-gray); color: var(--vn-text-color);
} }
</style> </style>