::v-deep migration

pull/496/head
Cagatay Civici 2020-09-17 22:09:37 +03:00
parent 16b101c2a2
commit 8860a174bb
27 changed files with 181 additions and 203 deletions

View File

@ -178,13 +178,13 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep .p-paginator { ::v-deep(.p-paginator) {
.p-paginator-current { .p-paginator-current {
margin-left: auto; margin-left: auto;
} }
} }
::v-deep .p-progressbar { ::v-deep(.p-progressbar) {
height: .5rem; height: .5rem;
background-color: #D8DADC; background-color: #D8DADC;
@ -198,7 +198,7 @@ export default {
justify-content: space-between; justify-content: space-between;
} }
::v-deep .p-datepicker { ::v-deep(.p-datepicker) {
min-width: 25rem; min-width: 25rem;
td { td {
@ -206,7 +206,7 @@ export default {
} }
} }
::v-deep .p-datatable.p-datatable-customers { ::v-deep(.p-datatable.p-datatable-customers) {
.p-datatable-header { .p-datatable-header {
padding: 1rem; padding: 1rem;
text-align: left; text-align: left;
@ -236,7 +236,7 @@ export default {
} }
@media screen and (max-width: 960px) { @media screen and (max-width: 960px) {
::v-deep .p-datatable { ::v-deep(.p-datatable) {
&.p-datatable-customers { &.p-datatable-customers {
.p-datatable-thead > tr > th, .p-datatable-thead > tr > th,
.p-datatable-tfoot > tr > td { .p-datatable-tfoot > tr > td {

View File

@ -1655,7 +1655,7 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
::v-deep .p-datatable { ::v-deep(.p-datatable) {
&.p-datatable-responsive-demo { &.p-datatable-responsive-demo {
.p-datatable-thead > tr > th, .p-datatable-thead > tr > th,
.p-datatable-tfoot > tr > td { .p-datatable-tfoot > tr > td {
@ -1739,7 +1739,7 @@ export default {
} }
} }
::v-deep .orange-car { .orange-car {
background-color: #344b5f !important; background-color: #344b5f !important;
color: #ffffff !important; color: #ffffff !important;
} }
@ -2583,18 +2583,18 @@ export default {
</CodeHighlight> </CodeHighlight>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
::v-deep .p-paginator { ::v-deep(.p-paginator) {
.p-paginator-current { .p-paginator-current {
margin-left: auto; margin-left: auto;
} }
} }
::v-deep .p-progressbar { ::v-deep(.p-progressbar) {
height: .5rem; height: .5rem;
background-color: #D8DADC; background-color: #D8DADC;
.p-progressbar-value { .p-progressbar-value {
background-color: #00ACAD; background-color: #607D8B;
} }
} }
@ -2603,7 +2603,7 @@ export default {
justify-content: space-between; justify-content: space-between;
} }
::v-deep .p-datepicker { ::v-deep(.p-datepicker) {
min-width: 25rem; min-width: 25rem;
td { td {
@ -2611,7 +2611,7 @@ export default {
} }
} }
::v-deep .p-datatable.p-datatable-customers { ::v-deep(.p-datatable.p-datatable-customers) {
.p-datatable-header { .p-datatable-header {
padding: 1rem; padding: 1rem;
text-align: left; text-align: left;
@ -2640,15 +2640,18 @@ export default {
display: none; display: none;
} }
@media screen and (max-width: 64em) { @media screen and (max-width: 960px) {
::v-deep .p-datatable { ::v-deep(.p-datatable) {
&.p-datatable-customers { &.p-datatable-customers {
.p-datatable-thead > tr > th, .p-datatable-thead > tr > th,
.p-datatable-tfoot > tr > td { .p-datatable-tfoot > tr > td {
display: none !important; display: none !important;
} }
.p-datatable-tbody > tr > td { .p-datatable-tbody > tr {
border-bottom: 1px solid var(--layer-2);
> td {
text-align: left; text-align: left;
display: block; display: block;
border: 0 none !important; border: 0 none !important;
@ -2664,6 +2667,11 @@ export default {
margin: -.4rem 1rem -.4rem -.4rem; margin: -.4rem 1rem -.4rem -.4rem;
font-weight: bold; font-weight: bold;
} }
.p-progressbar {
margin-top: .5rem;
}
}
} }
} }
} }

View File

@ -288,7 +288,7 @@ export default {
</template> </template>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
.editable-cells-table td.p-cell-editing { ::v-deep(.editable-cells-table td.p-cell-editing) {
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
} }
@ -396,7 +396,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep .editable-cells-table td.p-cell-editing { ::v-deep(.editable-cells-table td.p-cell-editing) {
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
} }

View File

@ -322,13 +322,13 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep .p-paginator { ::v-deep(.p-paginator) {
.p-paginator-current { .p-paginator-current {
margin-left: auto; margin-left: auto;
} }
} }
::v-deep .p-progressbar { ::v-deep(.p-progressbar) {
height: .5rem; height: .5rem;
background-color: #D8DADC; background-color: #D8DADC;
@ -342,7 +342,7 @@ export default {
justify-content: space-between; justify-content: space-between;
} }
::v-deep .p-datepicker { ::v-deep(.p-datepicker) {
min-width: 25rem; min-width: 25rem;
td { td {
@ -350,7 +350,7 @@ export default {
} }
} }
::v-deep .p-datatable.p-datatable-customers { ::v-deep(.p-datatable.p-datatable-customers) {
.p-datatable-header { .p-datatable-header {
padding: 1rem; padding: 1rem;
text-align: left; text-align: left;
@ -380,7 +380,7 @@ export default {
} }
@media screen and (max-width: 960px) { @media screen and (max-width: 960px) {
::v-deep .p-datatable { ::v-deep(.p-datatable) {
&.p-datatable-customers { &.p-datatable-customers {
.p-datatable-thead > tr > th, .p-datatable-thead > tr > th,
.p-datatable-tfoot > tr > td { .p-datatable-tfoot > tr > td {

View File

@ -103,7 +103,7 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
::v-deep .p-datatable { ::v-deep(.p-datatable) {
&.p-datatable-responsive-demo { &.p-datatable-responsive-demo {
.p-datatable-thead > tr > th, .p-datatable-thead > tr > th,
.p-datatable-tfoot > tr > td { .p-datatable-tfoot > tr > td {
@ -165,7 +165,7 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
::v-deep .p-datatable { ::v-deep(.p-datatable) {
&.p-datatable-responsive-demo { &.p-datatable-responsive-demo {
.p-datatable-thead > tr > th, .p-datatable-thead > tr > th,
.p-datatable-tfoot > tr > td { .p-datatable-tfoot > tr > td {

View File

@ -300,7 +300,7 @@ export default {
font-weight: 700; font-weight: 700;
} }
::v-deep .p-rowgroup-header { ::v-deep(.p-rowgroup-header) {
span { span {
font-weight: 700; font-weight: 700;
} }

View File

@ -94,9 +94,8 @@ export default {
color: #66BB6A; color: #66BB6A;
} }
::v-deep .row-accessories { ::v-deep(.row-accessories) {
background-color: rgba(0,0,0,.15) !important; background-color: rgba(0,0,0,.15) !important;
} }
</CodeHighlight> </CodeHighlight>
</TabPanel> </TabPanel>
@ -155,8 +154,7 @@ export default {
color: #66BB6A; color: #66BB6A;
} }
::v-deep .row-accessories { ::v-deep(.row-accessories) {
background-color: rgba(0,0,0,.15) !important; background-color: rgba(0,0,0,.15) !important;
} }
</style> </style>

View File

@ -144,7 +144,7 @@ export default {
vertical-align: middle; vertical-align: middle;
} }
::v-deep .product-list-item { ::v-deep(.product-list-item) {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 1rem; padding: 1rem;
@ -181,7 +181,7 @@ export default {
} }
} }
::v-deep .product-grid-item { ::v-deep(.product-grid-item) {
margin: .5rem; margin: .5rem;
border: 1px solid #dee2e6; border: 1px solid #dee2e6;

View File

@ -100,8 +100,7 @@ export default {
</CodeHighlight> </CodeHighlight>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
::v-deep { ::v-deep(.custom-galleria) {
.custom-galleria {
&.fullscreen { &.fullscreen {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -160,7 +159,6 @@ export default {
} }
} }
} }
}
} }
</CodeHighlight> </CodeHighlight>
</TabPanel> </TabPanel>
@ -259,8 +257,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep { ::v-deep(.custom-galleria) {
.custom-galleria {
&.fullscreen { &.fullscreen {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -319,6 +316,5 @@ export default {
} }
} }
} }
}
} }
</style> </style>

View File

@ -190,8 +190,7 @@ export default {
</CodeHighlight> </CodeHighlight>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
::v-deep { ::v-deep(.custom-indicator-galleria) {
.custom-indicator-galleria {
.indicator-text { .indicator-text {
color: #e9ecef; color: #e9ecef;
cursor: pointer; cursor: pointer;
@ -202,7 +201,6 @@ export default {
color: var(--primary-color); color: var(--primary-color);
} }
} }
}
} }
</CodeHighlight> </CodeHighlight>
</TabPanel> </TabPanel>
@ -249,8 +247,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep { ::v-deep(.custom-indicator-galleria) {
.custom-indicator-galleria {
.indicator-text { .indicator-text {
color: #e9ecef; color: #e9ecef;
cursor: pointer; cursor: pointer;
@ -261,6 +258,5 @@ export default {
color: var(--primary-color); color: var(--primary-color);
} }
} }
}
} }
</style> </style>

View File

@ -78,7 +78,7 @@ export default {
min-width: 15rem; min-width: 15rem;
} }
::v-deep .multiselect-custom { ::v-deep(.multiselect-custom) {
.p-multiselect-label:not(.p-placeholder) { .p-multiselect-label:not(.p-placeholder) {
padding-top: .25rem; padding-top: .25rem;
padding-bottom: .25rem; padding-bottom: .25rem;

View File

@ -375,7 +375,7 @@ export default {
min-width: 15rem; min-width: 15rem;
} }
::v-deep .multiselect-custom { ::v-deep(.multiselect-custom) {
.p-multiselect-label:not(.p-placeholder) { .p-multiselect-label:not(.p-placeholder) {
padding-top: .25rem; padding-top: .25rem;
padding-bottom: .25rem; padding-bottom: .25rem;

View File

@ -182,7 +182,7 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
::v-deep .p-organizationchart { ::v-deep(.p-organizationchart) {
.p-person { .p-person {
padding: 0; padding: 0;
border: 0 none; border: 0 none;

View File

@ -648,7 +648,7 @@ export default {
</CodeHighlight> </CodeHighlight>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
::v-deep .p-organizationchart { ::v-deep(.p-organizationchart) {
.p-person { .p-person {
padding: 0; padding: 0;
border: 0 none; border: 0 none;

View File

@ -31,7 +31,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep .card-container { ::v-deep(.card-container) {
.card { .card {
width: 75px; width: 75px;
height: 75px; height: 75px;

View File

@ -99,7 +99,7 @@ export default {}
</CodeHighlight> </CodeHighlight>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
::v-deep .card-container { ::v-deep(.card-container) {
.card { .card {
width: 75px; width: 75px;
height: 75px; height: 75px;

View File

@ -79,7 +79,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep .p-scrollpanel { ::v-deep(.p-scrollpanel) {
p { p {
padding: .5rem; padding: .5rem;
line-height: 1.5; line-height: 1.5;

View File

@ -155,7 +155,7 @@ export default {
</CodeHighlight> </CodeHighlight>
<CodeHighlight lang="css"> <CodeHighlight lang="css">
::v-deep .p-scrollpanel { ::v-deep(.p-scrollpanel) {
p { p {
padding: .5rem; padding: .5rem;
line-height: 1.5; line-height: 1.5;

View File

@ -68,11 +68,11 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
::v-deep b { ::v-deep(b) {
display: block display: block;
} }
::v-deep .p-card-body { ::v-deep(.p-card-body) {
padding: 2rem; padding: 2rem;
} }
</style> </style>

View File

@ -59,7 +59,7 @@
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>
::v-deep .pro-section { ::v-deep(.pro-section) {
display: flex; display: flex;
margin-top: .75rem; margin-top: .75rem;
@ -79,8 +79,7 @@
} }
} }
li { li {
line-height: 1.5; line-height: 1.5;
} }
</style> </style>

View File

@ -40,7 +40,7 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
::v-deep .tabmenudemo-content { ::v-deep(.tabmenudemo-content) {
padding: 2rem 1rem; padding: 2rem 1rem;
} }
</style> </style>

View File

@ -66,7 +66,7 @@ p {
margin-top: 0; margin-top: 0;
} }
::v-deep .dark-demo-terminal { ::v-deep(.dark-demo-terminal) {
background-color: #212121; background-color: #212121;
color: #ffffff; color: #ffffff;

View File

@ -176,7 +176,7 @@ p {
margin-top: 0; margin-top: 0;
} }
::v-deep .dark-demo-terminall { ::v-deep(.dark-demo-terminal) {
background-color: #212121; background-color: #212121;
color: #ffffff; color: #ffffff;

View File

@ -58,7 +58,7 @@ html {
<CodeHighlight> <CodeHighlight>
&lt;style lang="scss" scoped&gt; &lt;style lang="scss" scoped&gt;
::v-deep .dark-panel.p-panel { ::v-deep(.dark-panel.p-panel) {
.p-panel-titlebar { .p-panel-titlebar {
background: #212121; background: #212121;
} }

View File

@ -108,10 +108,9 @@ button {
margin-right: .5rem; margin-right: .5rem;
} }
::v-deep .p-tree { ::v-deep(.p-tree) {
a { a {
color: #2196f3; color: #2196f3;
} }
} }
</style> </style>

View File

@ -1239,16 +1239,10 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
::v-deep { ::v-deep(.sm-visible) {
.sm-invisible {
display: none;
}
.sm-visible {
display: inline; display: inline;
margin-right: .5rem; margin-right: .5rem;
} }
}
} }
</CodeHighlight> </CodeHighlight>

View File

@ -73,16 +73,10 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
::v-deep { ::v-deep(.sm-visible) {
.sm-invisible {
display: none;
}
.sm-visible {
display: inline; display: inline;
margin-right: .5rem; margin-right: .5rem;
} }
}
} }
</CodeHighlight> </CodeHighlight>
@ -117,15 +111,9 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
::v-deep { ::v-deep(.sm-visible) {
.sm-invisible {
display: none;
}
.sm-visible {
display: inline; display: inline;
margin-right: .5rem; margin-right: .5rem;
} }
}
} }
</style> </style>