Skip to content
Merged
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
12 changes: 8 additions & 4 deletions css/components/ncactions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,14 @@
padding: 1rem;
}

// NC33 file-type filter uses NcButton items (no ul/li); reshape the
// popover to match the legacy action menu below.
// NC33 file-type / modified filters use NcButton items (no ul/li);
// reshape the popover to match the legacy action menu below.
files-file-list-filter-type .icon-vue svg path {
fill: var(--color-main-text);
}

&:has(files-file-list-filter-type) {
&:has(files-file-list-filter-type),
&:has(files-file-list-filter-modified) {
width: fit-content;
min-width: 213px;
max-height: min(312px, 60vh);
Expand All @@ -75,6 +76,8 @@
> div > div,
files-file-list-filter-type,
files-file-list-filter-type > div,
files-file-list-filter-modified,
files-file-list-filter-modified > div,
.button-vue {
min-width: 0;
}
Expand All @@ -84,7 +87,8 @@
padding: 0;
}

files-file-list-filter-type > div {
files-file-list-filter-type > div,
files-file-list-filter-modified > div {
display: flex;
flex-direction: column;
gap: 0;
Expand Down
13 changes: 12 additions & 1 deletion css/components/ncbreadcrumb.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,22 @@
}
}

// Hide dot after last item (no separator after the last breadcrumb)
// Present the current directory as a plain label: no separator, no
// actions menu (pointer-events), no dropdown chevron.
li.vue-crumb:last-child {
cursor: pointer;

span.chevron-right-icon {
display: none;
}

.action-item {
pointer-events: none;
}

.action-item__menutoggle .button-vue__icon {
display: none;
}
}
}
}
Expand Down
Loading