Skip to content

Commit

Permalink
Merge pull request #6559 from owncloud/feature-contextmenu-hover-back…
Browse files Browse the repository at this point in the history
…ground

Contextmenu hover background
  • Loading branch information
kulmann committed Mar 9, 2022
2 parents 8d7ff36 + dcb6c54 commit e1e3265
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 33 deletions.
7 changes: 7 additions & 0 deletions changelog/unreleased/enhancement-contextmenu-hover-background
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Enhancement: Contextmenu background hover

We've added a background hover color for contextmenu actions.

https://github.com/owncloud/web/pull/6553
https://github.com/owncloud/web/pull/6559
https://github.com/owncloud/web/issues/6560
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:key="`section-${section.name}-action-${actionIndex}`"
:action="action"
:items="items"
class="oc-files-context-action oc-px-s"
class="oc-files-context-action oc-px-s oc-rounded"
/>
</oc-list>
</template>
Expand Down Expand Up @@ -210,6 +210,9 @@ export default {
li {
padding: 6px;
&:hover {
background-color: var(--oc-color-background-hover);
}
}
> li {
Expand All @@ -224,12 +227,6 @@ export default {
vertical-align: top;
width: 100%;
text-align: left;
span:hover,
&:hover {
color: var(--oc-color-swatch-passive-hover) !important;
text-decoration: underline !important;
}
}
}
Expand Down
Loading

0 comments on commit e1e3265

Please sign in to comment.