From c9c568570feca4256a76e8d3df9213ac09bcaf99 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 11 Dec 2023 03:58:05 -0600 Subject: [PATCH] fix cursor on recipe components (#2819) Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com> --- frontend/components/Domain/Recipe/RecipePage/RecipePage.vue | 3 --- .../RecipePage/RecipePageParts/RecipePageInstructions.vue | 5 +---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/frontend/components/Domain/Recipe/RecipePage/RecipePage.vue b/frontend/components/Domain/Recipe/RecipePage/RecipePage.vue index 8191915c931c..13ced2946022 100644 --- a/frontend/components/Domain/Recipe/RecipePage/RecipePage.vue +++ b/frontend/components/Domain/Recipe/RecipePage/RecipePage.vue @@ -330,9 +330,6 @@ export default defineComponent({ .list-group { min-height: 38px; } -.list-group-item { - cursor: move; -} .list-group-item i { cursor: pointer; } diff --git a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue index c3080328249b..cb8e9732ad92 100644 --- a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue +++ b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue @@ -117,7 +117,7 @@ @click="toggleDisabled(index)" > - + {{ $globals.icons.arrowUpDown }} {{ $t("recipe.step-index", { step: index + 1 }) }} @@ -671,9 +671,6 @@ export default defineComponent({ .list-group { min-height: 38px; } -.list-group-item { - cursor: move; -} .list-group-item i { cursor: pointer; }