Skip to content

Commit 296891e

Browse files
Merge pull request #1254 from nextcloud/dependabot/npm_and_yarn/nextcloud/stylelint-config-2.3.0
2 parents ef9f067 + 0511991 commit 296891e

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
[#1226](https://github.com/nextcloud/cookbook/pull/1226) @christianlupus
2727
- Allow for PlantUML diagrams in documentation
2828
[#1229](https://github.com/nextcloud/cookbook/pull/1229) @christianlupus
29+
- Remove deprecated `::v-deep` CSS syntax @christianlupus
2930

3031
### Documentation
3132
- Fix bad writing

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/RecipeView.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -782,20 +782,20 @@ aside ul li input[type="checkbox"] {
782782
vertical-align: middle;
783783
}
784784
785-
.markdown-description ::v-deep(ol > li) {
785+
.markdown-description :deep(ol > li) {
786786
list-style-type: numbered;
787787
}
788788
789-
.markdown-description ::v-deep(ul > li) {
789+
.markdown-description :deep(ul > li) {
790790
list-style-type: disc;
791791
}
792792
793-
.markdown-description ::v-deep(ol > li),
794-
.markdown-description ::v-deep(ul > li) {
793+
.markdown-description :deep(ol > li),
794+
.markdown-description :deep(ul > li) {
795795
margin-left: 20px;
796796
}
797797
798-
.markdown-description ::v-deep(a) {
798+
.markdown-description :deep(a) {
799799
text-decoration: underline;
800800
}
801801

0 commit comments

Comments
 (0)