Skip to content

Commit

Permalink
Add download dropdown lists to dataTables
Browse files Browse the repository at this point in the history
  • Loading branch information
lfarrell committed Jul 18, 2023
1 parent d2b536e commit 3d79c92
Show file tree
Hide file tree
Showing 8 changed files with 449 additions and 157 deletions.
147 changes: 78 additions & 69 deletions static/js/vue-cdr-access/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions static/js/vue-cdr-access/src/assets/common-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,30 @@ a.button.is-link span {

.background-white {
background-color: white;
}

.image-download-options button {
background-color: #1A698C;
color: white;
font-family: 'Open Sans', sans-serif;
}

.image-download-options button:hover,
.image-download-options button:focus {
background-color: #084b6b;
color: white;
}

.image-download-options a {
border: inherit;
color: black;
}

.image-download-options .dropdown-menu {
left: unset;
right: 0;
}

.image-download-options .fa-angle-down {
margin-left: 8px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
<file-list v-if="childCount > 0"
:child-count="childCount"
:work-id="recordData.briefObject.id"
:view-original="hasPermission(recordData,'viewOriginal')"
:edit-access="hasPermission(recordData,'editDescription')">
</file-list>
<metadata-display :uuid="recordData.briefObject.id"
Expand Down
Loading

0 comments on commit 3d79c92

Please sign in to comment.