Skip to content

Commit 96f0c9c

Browse files
committed
only show RSS icon on hover (branch list)
1 parent 88c7bd9 commit 96f0c9c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

web_src/js/components/RepoBranchTagSelector.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@
7676
</div>
7777
</template>
7878

79+
<style scoped>
80+
.menu .item a {
81+
display: none; /* only show RSS icon on hover */
82+
}
83+
.menu .item:hover a {
84+
display: inline-block;
85+
}
86+
</style>
87+
7988
<script>
8089
import {createApp, nextTick} from 'vue';
8190
import $ from 'jquery';

0 commit comments

Comments
 (0)