diff --git a/changelog/unreleased/enhancement-add-keyboard-navigation-selection b/changelog/unreleased/enhancement-add-keyboard-navigation-selection
new file mode 100644
index 00000000000..6668316f0cd
--- /dev/null
+++ b/changelog/unreleased/enhancement-add-keyboard-navigation-selection
@@ -0,0 +1,15 @@
+Enhancement: Add Keyboard navigation/selection
+
+We've added the possibility to navigate and select via keyboard.
+- Navigation:
+ - via keyboard arrows up/down for moving up and down through the rows of the file list
+- Selection
+ - via keyboard space bar: select / deselect the currently highlighted row
+ - via keyboard shift + arrows up/down: add a series of rows
+ - via keyboard cmd/ctrl + a: select all rows
+ - via keyboard esc: deselect all rows
+ - via mouse holding cmd/ctrl + left click on a row: add/remove the clicked item to/from the current selection model
+ - via mouse holding shift + left click on a row: add the clicked row and the series of rows towards the most recently clicked row to the current selection model.
+
+https://github.com/owncloud/web/pull/7153
+https://github.com/owncloud/web/issues/6029
\ No newline at end of file
diff --git a/changelog/unreleased/enhancement-update-ods b/changelog/unreleased/enhancement-update-ods
index b3aec065efa..3e323cd1ef7 100644
--- a/changelog/unreleased/enhancement-update-ods
+++ b/changelog/unreleased/enhancement-update-ods
@@ -1,13 +1,15 @@
-Enhancement: Update ODS to v14.0.0-alpha.2
+Enhancement: Update ODS to v14.0.0-alpha.4
-We updated the ownCloud Design System to version 14.0.0-alpha.2. Please refer to the full changelog in the ODS release (linked) for more details. Summary:
+We updated the ownCloud Design System to version 14.0.0-alpha.4. Please refer to the full changelog in the ODS release (linked) for more details. Summary:
-- Change - Remove OcAlert component: https://github.com/owncloud/owncloud-design-system/pull/2210
-- Change - Remove transition animations: https://github.com/owncloud/owncloud-design-system/pull/2210
-- Change - Revamp animations: https://github.com/owncloud/owncloud-design-system/pull/2210
-- Enhancement - Progress bar indeterminate state: https://github.com/owncloud/owncloud-design-system/pull/2200
-- Enhancement - Redesign notifications: https://github.com/owncloud/owncloud-design-system/pull/2210
-- Bugfix - Remove click event on OcIcon: https://github.com/owncloud/owncloud-design-system/pull/2216
+- Bugfix - Remove click event on OcIcon: #2216
+- Change - Remove OcAlert component: #2210
+- Change - Remove transition animations: #2210
+- Change - Revamp animations: #2210
+- Change - OcTable emit event data on row click: #2218
+- Enhancement - OcCheckbox add outline: #2218
+- Enhancement - Progress bar indeterminate state: #2200
+- Enhancement - Redesign notifications: #2210
https://github.com/owncloud/web/pull/7139
https://github.com/owncloud/owncloud-design-system/releases/tag/14.0.0-alpha.2
diff --git a/packages/web-app-files/src/App.vue b/packages/web-app-files/src/App.vue
index 63dac19fdd5..19165eb2cd8 100644
--- a/packages/web-app-files/src/App.vue
+++ b/packages/web-app-files/src/App.vue
@@ -1,7 +1,7 @@
-
+
diff --git a/packages/web-app-files/src/components/FilesList/ResourceTable.vue b/packages/web-app-files/src/components/FilesList/ResourceTable.vue
index 7ba9031749d..d4e489acc70 100644
--- a/packages/web-app-files/src/components/FilesList/ResourceTable.vue
+++ b/packages/web-app-files/src/components/FilesList/ResourceTable.vue
@@ -41,6 +41,7 @@
size="large"
:value="selection"
:option="item"
+ :outline="isLatestSelectedItem(item)"
@input="emitSelect"
@click.native.stop
/>
@@ -169,6 +170,7 @@