Skip to content

Commit f8d9779

Browse files
committed
fix: v-deep 样式兼容问题修复
1 parent 291a7cd commit f8d9779

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

web/src/apps/scriptis/module/workbench/container.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ export default {
10791079
<style lang="scss" scoped>
10801080
@import '@/common/style/variables.scss';
10811081
.workbench {
1082-
::v-deep.ivu-tabs.ivu-tabs-card {
1082+
::v-deep .ivu-tabs.ivu-tabs-card {
10831083
border-top: $border-width-base $border-style-base #dcdee2;
10841084
.ivu-tabs-bar .ivu-tabs-tab {
10851085
margin-right: 0px;

web/src/apps/scriptis/module/workbench/script/intelligentDiagnosis.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default {
4747
</script>
4848
<style lang="scss" scoped>
4949
.we-intelligent-diagnosis {
50-
::v-deep.ivu-table-wrapper {
50+
::v-deep .ivu-table-wrapper {
5151
border: none;
5252
}
5353
}

web/src/apps/streamis/module/jarDetail/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ export default {
424424
}
425425
}
426426
.full {
427-
::v-deep.ivu-modal{
427+
::v-deep .ivu-modal{
428428
width: 100vw !important;
429429
height: 100vh;
430430
min-height: 430px;
@@ -433,7 +433,7 @@ export default {
433433
height: 100%;
434434
}
435435
}
436-
::v-deeptextarea{
436+
::v-deep textarea{
437437
height: calc(100vh - 200px) !important;
438438
min-height: 200px;
439439
max-height: calc(100vh - 200px) !important;

web/src/apps/streamis/module/jobHistory/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ export default {
340340
}
341341
}
342342
.full {
343-
::v-deep.ivu-modal{
343+
::v-deep .ivu-modal{
344344
width: 100vw !important;
345345
height: 100vh;
346346
min-height: 430px;
@@ -349,7 +349,7 @@ export default {
349349
height: 100%;
350350
}
351351
}
352-
::v-deeptextarea{
352+
::v-deep textarea{
353353
height: calc(100vh - 200px) !important;
354354
min-height: 200px;
355355
max-height: calc(100vh - 200px) !important;

web/src/apps/streamis/module/jobList/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,11 +1665,11 @@ export default {
16651665
color: #ff9900;
16661666
}
16671667
1668-
::v-deep.ivu-table .warning-row td{
1668+
::v-deep .ivu-table .warning-row td{
16691669
background-color: #ff9900;
16701670
border-right: none;
16711671
}
1672-
::v-deep.ivu-table .disabled-row td{
1672+
::v-deep .ivu-table .disabled-row td{
16731673
background-color: #eee;
16741674
border-right: none;
16751675
}

web/src/apps/streamis/module/logDetail/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export default {
226226
}
227227
}
228228
.full {
229-
::v-deep.ivu-modal{
229+
::v-deep .ivu-modal{
230230
width: 100vw !important;
231231
height: 100vh;
232232
min-height: 430px;
@@ -235,7 +235,7 @@ export default {
235235
height: 100%;
236236
}
237237
}
238-
::v-deeptextarea{
238+
::v-deep textarea{
239239
height: calc(100vh - 200px) !important;
240240
min-height: 200px;
241241
max-height: calc(100vh - 200px) !important;

web/src/apps/workflows/module/common/tabList/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
min-width: 320px;
2020
.ivu-breadcrumb {
2121
font-size: 21px;
22-
::v-deep.ivu-breadcrumb-item-separator {
22+
::v-deep .ivu-breadcrumb-item-separator {
2323
color: rgba(0,0,0,0.65);
2424
}
2525
}

web/src/components/consoleComponent/result.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ export default {
694694
.result-normal-table .columnClass {
695695
height: 30px;
696696
line-height: 1.25;
697-
::v-deep.ivu-table-cell {
697+
::v-deep .ivu-table-cell {
698698
display: -webkit-box;
699699
-webkit-box-orient: vertical;
700700
-webkit-line-clamp: 2;

0 commit comments

Comments
 (0)