diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-12-05 17:33:01 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-12-05 17:33:01 +0100 |
commit | 292332e4810abfd74d3b6b875862ff941b4fdf87 (patch) | |
tree | c5d24bfdeb916bf0479a658ae4bdca2e5702bf3d /apps/files | |
parent | b0976e4568890b6b6556a7d5f53a83dfda58e4d6 (diff) | |
download | nextcloud-server-revert/41453.tar.gz nextcloud-server-revert/41453.zip |
Revert "Improve shared status button"revert/41453
This reverts commit c2c5994d7069464b9e69a54ce2c660a1a340c711.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryActions.vue | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue index d4693b7d8e6..377845d3fcc 100644 --- a/apps/files/src/components/FileEntry/FileEntryActions.vue +++ b/apps/files/src/components/FileEntry/FileEntryActions.vue @@ -37,7 +37,6 @@ :container="getBoundariesElement" :disabled="isLoading || loading !== ''" :force-name="true" - type="tertiary" :force-menu="enabledInlineActions.length === 0 /* forceMenu only if no inline actions */" :inline="enabledInlineActions.length" :open.sync="openedMenu" @@ -95,7 +94,7 @@ <script lang="ts"> import { DefaultType, FileAction, Node, NodeStatus, View, getFileActions } from '@nextcloud/files' import { showError, showSuccess } from '@nextcloud/dialogs' -import { translate as t } from '@nextcloud/l10n' +import { translate as t } from '@nextcloud/l10n'; import Vue, { PropType } from 'vue' import ArrowLeftIcon from 'vue-material-design-icons/ArrowLeft.vue' @@ -326,15 +325,3 @@ export default Vue.extend({ }, }) </script> - -<style lang="scss" scoped> - -:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) { - .button-vue__text { - color: var(--color-primary-element); - } - .button-vue__icon { - color: var(--color-primary-element); - } -} -</style> |