diff --git a/frontend/src/assets/variables.scss b/frontend/src/assets/variables.scss index ce744318..11a25097 100644 --- a/frontend/src/assets/variables.scss +++ b/frontend/src/assets/variables.scss @@ -9,7 +9,7 @@ // buttons, links $bcbox-primary: #036; $bcbox-link-text: #1a5a96; -$bcbox-link-text-hover: #00f; +$bcbox-link-text-hover: #2378c7; $bcbox-outline-on-primary: #fff; $bcbox-error: #d8292f; diff --git a/frontend/src/components/bucket/BucketPermission.vue b/frontend/src/components/bucket/BucketPermission.vue index 903cf100..da760e70 100644 --- a/frontend/src/components/bucket/BucketPermission.vue +++ b/frontend/src/components/bucket/BucketPermission.vue @@ -1,16 +1,18 @@ - - - - - Add user - - - - - - - - - - There are no users associated with this bucket. - - - - - - - updateBucketPermission(value, data.userId, Permissions.CREATE)" - /> - - - - - updateBucketPermission(value, data.userId, Permissions.READ)" - /> - - - - - updateBucketPermission(value, data.userId, Permissions.UPDATE)" + + + + + - - - + + + + + + - - updateBucketPermission(value, data.userId, Permissions.DELETE)" - /> + + + There are no users associated with this bucket. + - - - - updateBucketPermission(value, data.userId, Permissions.MANAGE)" - /> - - - - - - - - - - - + + + + + updateBucketPermission(value, data.userId, Permissions.CREATE)" + /> + + + + + updateBucketPermission(value, data.userId, Permissions.READ)" + /> + + + + + updateBucketPermission(value, data.userId, Permissions.UPDATE)" + /> + + + + + updateBucketPermission(value, data.userId, Permissions.DELETE)" + /> + + + + + updateBucketPermission(value, data.userId, Permissions.MANAGE)" + /> + + + + + + + + + + + + + + + diff --git a/frontend/src/components/common/ShareButton.vue b/frontend/src/components/common/ShareButton.vue index 68b70a77..4005db1f 100644 --- a/frontend/src/components/common/ShareButton.vue +++ b/frontend/src/components/common/ShareButton.vue @@ -129,7 +129,6 @@ const displayShareDialog = ref(false); :disabled="!hasManagePermission" > diff --git a/frontend/src/components/common/index.ts b/frontend/src/components/common/index.ts index ea3c4693..4b0f18c9 100644 --- a/frontend/src/components/common/index.ts +++ b/frontend/src/components/common/index.ts @@ -1,3 +1,5 @@ +export { default as BulkPermission } from './BulkPermission.vue'; +export { default as BulkPermissionResults } from './BulkPermissionResults.vue'; export { default as Invite } from './Invite.vue'; export { default as Share } from './Share.vue'; export { default as ShareButton } from './ShareButton.vue'; diff --git a/frontend/src/components/object/ObjectPermission.vue b/frontend/src/components/object/ObjectPermission.vue index 0da62b60..0fbde7ed 100644 --- a/frontend/src/components/object/ObjectPermission.vue +++ b/frontend/src/components/object/ObjectPermission.vue @@ -1,10 +1,12 @@ - - - - Public - - This option toggles the file to be publicly available and accessible to anyone - To instead set explicit permissions, add users and use the options below - + + + + + Public + + This option toggles the file to be publicly available and accessible to anyone + To instead set explicit permissions, add users and use the options below + + + - - - User Permissions + User Permissions - - - - Add user - - - - - - - - - - - There are no users associated specifically with this file. - Permissions at the folder level still apply but aren't shown here. - - - - - - - - updateObjectPermission(value, data.userId, Permissions.READ)" - /> - - - - - updateObjectPermission(value, data.userId, Permissions.UPDATE)" - /> - - - - - updateObjectPermission(value, data.userId, Permissions.DELETE)" + + + - - - + + + + + + - - updateObjectPermission(value, data.userId, Permissions.MANAGE)" - /> - - - - - - - + + + + There are no users associated specifically with this file. + Permissions at the folder level still apply but aren't shown here. + + - - - + + + + + updateObjectPermission(value, data.userId, Permissions.READ)" + /> + + + + + updateObjectPermission(value, data.userId, Permissions.UPDATE)" + /> + + + + + updateObjectPermission(value, data.userId, Permissions.DELETE)" + /> + + + + + updateObjectPermission(value, data.userId, Permissions.MANAGE)" + /> + + + + + + + + + + + + + + +