Align table style with files app

This commit is contained in:
Benedikt Kulmann
2020-09-29 09:53:38 +02:00
parent 22d1ab2f03
commit ade5cb337a
2 changed files with 14 additions and 2 deletions

View File

@@ -2,13 +2,14 @@
<div>
<oc-table middle divider>
<oc-table-group>
<oc-table-row>
<oc-table-row class="fix-table-header">
<oc-table-cell shrink type="head">
<oc-checkbox
:value="areAllAccountsSelected"
:label="$gettext('Select all users')"
hide-label
@change="toggleSelectionAll"
class="uk-margin-small-left"
/>
</oc-table-cell>
<oc-table-cell shrink type="head" />
@@ -57,3 +58,9 @@ export default {
}
}
</script>
<style scoped>
.fix-table-header > th {
text-transform: none;
}
</style>

View File

@@ -1,7 +1,12 @@
<template>
<oc-table-row>
<oc-table-cell>
<oc-checkbox :value="isAccountSelected" @change="TOGGLE_SELECTION_ACCOUNT(account)" :label="selectAccountLabel" hide-label />
<oc-checkbox
class="uk-margin-small-left"
:value="isAccountSelected"
@change="TOGGLE_SELECTION_ACCOUNT(account)"
:label="selectAccountLabel" hide-label
/>
</oc-table-cell>
<oc-table-cell>
<avatar :user-name="account.displayName || account.onPremisesSamAccountName" :userid="account.id" :width="35" />