Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made background color on hover of the caption area more subtle #4860

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
@upload="$emit('upload')"
>
<template #default="{ openFileDialog }">
<VListTile inactive class="languageTile py-2">
<VListTile
inactive
class="languageTile py-2"
:class="$computedClass({
':hover': { backgroundColor: $themePalette.grey.v_100 }
})"
>
<VListTileContent v-if="!addingFile">
<ActionLink
data-test="add-file"
Expand Down Expand Up @@ -147,11 +153,6 @@
</script>
<style lang="less" scoped>

.languageTile:hover {
/* stylelint-disable-next-line custom-property-pattern */
background-color: var(--v-greyBackground-base);
bjester marked this conversation as resolved.
Show resolved Hide resolved
}

/deep/ .languageTile > .v-list__tile {
height: 56px;
}
Expand Down
Loading