Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions assets/scss/_content_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -270,3 +270,41 @@ th {
overflow-x: auto;
max-width: 100%;
}

.td-content .permissions-tabpane {
max-width: 100%;
width: 100%;

.nav-tabs,
.tab-content,
.tab-pane,
.csvtable-div,
table.csvtable {
width: 100%;
max-width: 100%;
}

table.csvtable {
th:nth-child(n+3),
td:nth-child(n+3) {
text-align: center;
}
}

.csvtable-div {
table.csvtable {
table-layout: fixed;

th:first-child,
td:first-child {
width: 25%;
}

th:nth-child(2),
td:nth-child(2) {
width: 75%;
max-width: none;
}
}
}
}
Comment thread
areychana marked this conversation as resolved.
22 changes: 13 additions & 9 deletions content/en/cloud/reference/default-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ tags: [perms]
-* user must be resource owner in order to perform action.
- ✅ user is allowed to perform action regardless of resource ownership.

{{< tabpane text=true >}}
{{< tab header="**Sort by**:" disabled=true />}}
{{< tab header="Categories" lang="en" >}}
{{< csvtable >}}
{{< /tab >}}
{{< tab header="Roles" lang="en" >}}
{{< csvtable-roles >}}
{{< /tab >}}
{{< /tabpane >}}
<div class="permissions-tabpane">

{{< tabpane text=true >}}
{{< tab header="**Sort by**:" disabled=true />}}
{{< tab header="Categories" lang="en" >}}
{{< csvtable >}}
{{< /tab >}}
{{< tab header="Roles" lang="en" >}}
{{< csvtable-roles >}}
{{< /tab >}}
{{< /tabpane >}}

</div>
Loading