mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-04 08:14:43 +01:00
Use correct selector for hiding RSS icon link in the branch selector dropdown (#25080)
Fix #25079    
This commit is contained in:
parent
315124b469
commit
8e63373c01
1 changed files with 2 additions and 2 deletions
|
@ -296,10 +296,10 @@ export default sfc; // activate IDE's Vue plugin
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.menu .item a {
|
.menu .item .rss-icon {
|
||||||
display: none; /* only show RSS icon on hover */
|
display: none; /* only show RSS icon on hover */
|
||||||
}
|
}
|
||||||
.menu .item:hover a {
|
.menu .item:hover .rss-icon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Reference in a new issue