Skip to content

Commit af33a11

Browse files
authored
Fix doubled box-shadow in branch dropdown menu (#26678)
1 parent a428591 commit af33a11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/repo/branch_dropdown.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
<div class="js-branch-tag-selector {{if .ContainerClasses}}{{.ContainerClasses}}{{end}}">
6969
{{/* show dummy elements before Vue componment is mounted, this code must match the code in BranchTagSelector.vue */}}
70-
<div class="ui floating filter dropdown custom">
70+
<div class="ui dropdown custom">
7171
<button class="branch-dropdown-button gt-ellipsis ui basic small compact button gt-df gt-m-0">
7272
<span class="text gt-df gt-ac gt-mr-2">
7373
{{if .release}}

web_src/js/components/RepoBranchTagSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="ui floating filter dropdown custom">
2+
<div class="ui dropdown custom">
33
<button class="branch-dropdown-button gt-ellipsis ui basic small compact button gt-df gt-m-0" @click="menuVisible = !menuVisible" @keyup.enter="menuVisible = !menuVisible">
44
<span class="text gt-df gt-ac gt-mr-2">
55
<template v-if="release">{{ textReleaseCompare }}</template>

0 commit comments

Comments
 (0)