Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

/deep/ to ::v-deep #504

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .htmlhintrc.js

This file was deleted.

6 changes: 5 additions & 1 deletion .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('kolibri-tools/.stylelintrc');
const stylelintConfig = require('kolibri-format/.stylelintrc');

stylelintConfig['rules']['selector-pseudo-element-no-unknown'] = [true, { ignorePseudoElements: ['v-deep'] }];

module.exports = stylelintConfig;
2 changes: 1 addition & 1 deletion docs/pages/icons/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
<style lang="scss" scoped>

// hack to simulate bad behavior
/deep/ .wrong-colors svg {
::v-deep .wrong-colors svg {
fill: blue !important;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/KDateRange/KDateInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
}

/* HIDES BROWSER NATIVE DATEPICKER */
/deep/ input[type='date'] {
::v-deep input[type='date'] {
width: 150px;
text-align: left;
text-transform: uppercase !important;
Expand Down
8 changes: 0 additions & 8 deletions lib/KSelect/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1179,10 +1179,6 @@
vertical-align: bottom;
}

.ui-select-disabled /deep/ .ui-select__label-text.is-inline {
cursor: default;
}

/* stylelint-disable csstree/validator */

.ui-select-disabled {
Expand All @@ -1193,8 +1189,4 @@

/* stylelint-enable */

/deep/ .ui-select__display-value {
line-height: 1.3;
}

</style>
Loading