Skip to content

Commit

Permalink
Merge pull request #4860 from shruti862/new-branch
Browse files Browse the repository at this point in the history
Made background color on hover of the caption area more subtle
  • Loading branch information
bjester authored Dec 18, 2024
2 parents e794518 + 9b2455c commit 92ecf29
Showing 1 changed file with 7 additions and 6 deletions.
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);
}
/deep/ .languageTile > .v-list__tile {
height: 56px;
}
Expand Down

0 comments on commit 92ecf29

Please sign in to comment.