mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
refactor: css ::v-deep
to :deep()
This commit is contained in:
parent
298dc73dfd
commit
1b8dd46395
10 changed files with 25 additions and 27 deletions
|
@ -105,7 +105,7 @@ export default {
|
|||
margin-bottom: 1em;
|
||||
border-bottom: solid $border-width $gray-500;
|
||||
}
|
||||
::v-deep .panel-section:not(:last-child) {
|
||||
:deep(.panel-section:not(:last-child)) {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -57,7 +57,7 @@ export default {
|
|||
background-color: $white;
|
||||
border-width: 2px;
|
||||
|
||||
::v-deep .popover-body {
|
||||
:deep(.popover-body) {
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -145,7 +145,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .invalid-feedback code {
|
||||
:deep(.invalid-feedback code) {
|
||||
background-color: $gray-200;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -67,7 +67,7 @@ export default {
|
|||
#top-bar-right {
|
||||
margin-bottom: 0.75rem;
|
||||
|
||||
::v-deep > * {
|
||||
:deep(> *) {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ export default {
|
|||
margin-left: auto;
|
||||
}
|
||||
|
||||
::v-deep .btn {
|
||||
:deep(.btn) {
|
||||
margin-left: 0.5rem;
|
||||
&.dropdown-toggle-split {
|
||||
margin-left: 0;
|
||||
|
|
|
@ -83,7 +83,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.card-header {
|
||||
:deep(.card-header) {
|
||||
display: flex;
|
||||
|
||||
.custom-header {
|
||||
|
@ -97,7 +97,7 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
.card-footer {
|
||||
:deep(.card-footer) {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
|
@ -106,7 +106,7 @@ export default {
|
|||
margin-left: 0.5rem;
|
||||
}
|
||||
}
|
||||
.collapse:not(.show) + .card-footer {
|
||||
:deep(.collapse:not(.show) + .card-footer) {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -80,7 +80,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .custom-file-label {
|
||||
:deep(.custom-file-label) {
|
||||
color: $input-placeholder-color;
|
||||
|
||||
.btn-danger + .b-form-file & {
|
||||
|
|
|
@ -176,7 +176,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .dropdown-menu {
|
||||
:deep(.dropdown-menu) {
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
padding-top: 0;
|
||||
|
|
|
@ -74,8 +74,7 @@ export default {
|
|||
margin: 0 15%;
|
||||
}
|
||||
|
||||
::v-deep {
|
||||
.card-body {
|
||||
:deep(.card-body) {
|
||||
padding: 1.5rem;
|
||||
padding-bottom: 0;
|
||||
max-height: 60vh;
|
||||
|
@ -86,12 +85,11 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
.card-footer {
|
||||
:deep(.card-footer) {
|
||||
padding: 0.5rem 0.75rem;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
|
||||
.card-header {
|
||||
padding: 0.5rem 0.75rem;
|
||||
|
|
|
@ -514,7 +514,7 @@ export default {
|
|||
|
||||
flex-basis: 90%;
|
||||
|
||||
.card-body {
|
||||
:deep(.card-body) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
|
|
@ -291,7 +291,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .on-off-switch {
|
||||
:deep(.on-off-switch) {
|
||||
.custom-control-input {
|
||||
&:checked ~ .custom-control-label::before {
|
||||
border-color: $success;
|
||||
|
@ -322,7 +322,7 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
::v-deep form {
|
||||
:deep(form) {
|
||||
margin-bottom: -1rem;
|
||||
|
||||
& > * {
|
||||
|
|
Loading…
Reference in a new issue