Skip to content

Commit

Permalink
Merge branch 'curation-panel-refactor-2452' of https://github.com/FAI…
Browse files Browse the repository at this point in the history
…Rsharing/fairsharing.github.io into curation-panel-refactor-2452
  • Loading branch information
prakhyatox committed Feb 6, 2025
2 parents 3650840 + 8b1a469 commit 7e8ee70
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 10 deletions.
17 changes: 14 additions & 3 deletions documentation/html/components_Curators_HiddenRecords.vue.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ <h1 class="page-title">Source: components/Curators/HiddenRecords.vue</h1>
&lt;v-text-field
v-model="searches"
label="Search"
color="white--text"
color="white"
single-line
hide-details
solo
class="searchField"
/>
&lt;/v-card-title>
&lt;v-data-table
Expand All @@ -121,7 +123,7 @@ <h1 class="page-title">Source: components/Curators/HiddenRecords.vue</h1>
#item="props"
>
&lt;tr>
&lt;td>
&lt;td class="d-flex align-center">
&lt;v-avatar
v-if="props.item.type"
class="mr-2"
Expand Down Expand Up @@ -235,7 +237,16 @@ <h1 class="page-title">Source: components/Curators/HiddenRecords.vue</h1>
},
};
&lt;/script>
</pre>

&lt;style scoped>
::v-deep .v-data-table-header tr th {
white-space: nowrap;
}
.searchField {
width: 100%;
max-width: 400px
}
&lt;/style></pre>
</article>
</section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ <h1 class="page-title">Source: components/Curators/MaintenanceRequests.vue</h1>
&lt;v-text-field
v-model="searches"
label="Search"
color="white--text"
color="white"
single-line
hide-details
solo
class="searchField"
/>
&lt;/v-card-title>
&lt;v-card-text v-if="error.general">
Expand All @@ -131,7 +133,7 @@ <h1 class="page-title">Source: components/Curators/MaintenanceRequests.vue</h1>
&lt;td>
{{ props.item.createdAt }}
&lt;/td>
&lt;td>
&lt;td class="d-flex align-center">
&lt;v-avatar
v-if="props.item.type"
class="mr-2"
Expand Down Expand Up @@ -546,6 +548,14 @@ <h1 class="page-title">Source: components/Curators/MaintenanceRequests.vue</h1>
.testDialog {
width: 600px !important;
}

::v-deep .v-data-table-header tr th {
white-space: nowrap;
}
.searchField {
width: 100%;
max-width: 400px
}
&lt;/style>
</pre>
</article>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ <h1 class="page-title">Source: components/Curators/RecentCuratorCreation.vue</h1
&lt;v-text-field
v-model="searches"
label="Search"
color="white--text"
color="white"
single-line
hide-details
solo
class="searchField"
/>
&lt;/v-card-title>
&lt;v-data-table
Expand All @@ -121,7 +123,7 @@ <h1 class="page-title">Source: components/Curators/RecentCuratorCreation.vue</h1
#item="props"
>
&lt;tr>
&lt;td>
&lt;td class="d-flex align-center">
&lt;v-avatar
v-if="props.item.type"
class="mr-2"
Expand Down Expand Up @@ -227,6 +229,16 @@ <h1 class="page-title">Source: components/Curators/RecentCuratorCreation.vue</h1
},
};
&lt;/script>

&lt;style scoped>
::v-deep .v-data-table-header tr th {
white-space: nowrap;
}
.searchField {
width: 100%;
max-width: 400px
}
&lt;/style>
</pre>
</article>
</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ <h1 class="page-title">Source: components/Curators/RecordsAwaitingApproval.vue</
&lt;v-text-field
v-model="searches"
label="Search"
color="white--text"
color="white"
single-line
hide-details
solo
class="searchField"
/>
&lt;/v-card-title>
&lt;v-card-text v-if="error.general">
Expand Down Expand Up @@ -167,7 +169,7 @@ <h1 class="page-title">Source: components/Curators/RecordsAwaitingApproval.vue</
&lt;/v-list>
&lt;/v-menu>
&lt;/td>
&lt;td>
&lt;td class="d-flex align-center">
&lt;v-avatar
v-if="props.item.type"
class="mr-2"
Expand Down Expand Up @@ -681,6 +683,15 @@ <h1 class="page-title">Source: components/Curators/RecordsAwaitingApproval.vue</
max-height: 100px;
overflow-y: auto;
}

::v-deep .v-data-table-header tr th {
white-space: nowrap;
}
.searchField {
width: 100%;
max-width: 400px
}

&lt;/style>
</pre>
</article>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,12 @@ <h1 class="page-title">Source: components/Curators/SystemMessages.vue</h1>
},
};
&lt;/script>

&lt;style scoped>
::v-deep .v-data-table-header tr th {
white-space: nowrap;
}
&lt;/style>
</pre>
</article>
</section>
Expand Down
2 changes: 1 addition & 1 deletion documentation/html/quicksearch.html

Large diffs are not rendered by default.

0 comments on commit 7e8ee70

Please sign in to comment.