-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(files-manager): sort files and add filter feature + create file …
…action menu
- Loading branch information
1 parent
672425e
commit d7e7ad6
Showing
8 changed files
with
122 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/components/specific/files/files-table/file-actions-cell/FileActionsCell.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
.file-actions-cell { | ||
position: relative; | ||
|
||
&__btn { | ||
color: $color-tertiary-dark; | ||
} | ||
|
||
&__menu { | ||
position: absolute; | ||
z-index: 1; | ||
top: 0; | ||
right: 0; | ||
display: flex; | ||
flex-direction: column; | ||
width: 200px; | ||
padding: $spacing-unit/2 0; | ||
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); | ||
background-color: $color-white; | ||
|
||
&__btn { | ||
justify-content: flex-start; | ||
} | ||
} | ||
} |
44 changes: 40 additions & 4 deletions
44
src/components/specific/files/files-table/file-actions-cell/FileActionsCell.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,8 @@ | |
align-items: center; | ||
gap: $spacing-unit/2; | ||
cursor: pointer; | ||
|
||
&__icon-folder { | ||
color: $color-primary; | ||
} | ||
} |
7 changes: 6 additions & 1 deletion
7
src/components/specific/files/files-table/file-name-cell/FileNameCell.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters