Skip to content

Commit

Permalink
removed invalid card elements from css selectors (#3102)
Browse files Browse the repository at this point in the history
Not used in the examples and most there is not an element like card in the user code either.
  • Loading branch information
mstahv authored Jan 4, 2024
1 parent 9081589 commit cc4e90e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion articles/create-ui/dnd/drag-source.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ When a component is set draggable on the server side, the `draggable` attribute

[source,css]
----
.v-dragged.card {
.v-dragged {
outline: 1px dotted hotpink;
opacity: 0.5;
}
Expand Down
2 changes: 1 addition & 1 deletion articles/create-ui/dnd/drop-target.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The class name is removed when:

[source,css]
----
.v-drag-over-target.card {
.v-drag-over-target {
outline: 1px solid lightgreen;
}
----
Expand Down

0 comments on commit cc4e90e

Please sign in to comment.