fix(navigation): don't hide color bubble in navigation on touch devices
continuous-integration/drone/push Build is failing Details

Related discussion: https://community.vikunja.io/t/board-color-sticker/1607
This commit is contained in:
kolaente 2023-09-07 16:36:11 +02:00
parent f256fc3843
commit b126a7f7ff
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 8 additions and 0 deletions

View File

@ -147,6 +147,10 @@ const canNestDeeper = computed(() => canNestProjectDeeper(level))
}
}
.is-touch .color-bubble {
opacity: 1 !important;
}
.color-bubble-handle-wrapper {
position: relative;
width: 1rem;
@ -175,4 +179,8 @@ const canNestDeeper = computed(() => canNestProjectDeeper(level))
color: var(--grey-300) !important;
font-size: .75rem;
}
.is-touch .handle.has-color-bubble {
display: none !important;
}
</style>