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
4 changes: 4 additions & 0 deletions src/assets/NcAppNavigationItem.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
}
}

:deep(.icon-collapse) {
color: var(--color-main-text) !important;
}

&:not(.app-navigation-entry--editing)::before {
content: '';
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ export default {
inset-inline-end: 0;

// the whole navigation item is hovered thus will have the hover color - to distinguish we need to set a different color here.
&:hover {
&.button-vue--legacy34:hover {
background-color: var(--color-background-dark) !important;
}
&--active:hover {
&--active.button-vue--legacy34:hover {
background-color: var(--color-primary-element) !important;
}
}
Expand Down
24 changes: 23 additions & 1 deletion src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,15 @@ $content-inset: calc(3 * var(--default-grid-baseline));
max-width: 900px;
}

:deep(.modal-container__close) {
background-color: var(--color-primary-element-light) !important;
Comment thread
nfebe marked this conversation as resolved.

&:hover,
&:focus-visible {
background-color: var(--color-primary-element-light-hover) !important;
}
}

:deep(.dialog__name) {
position: absolute;
width: 1px;
Expand Down Expand Up @@ -342,6 +351,7 @@ $content-inset: calc(3 * var(--default-grid-baseline));
background-color: transparent;
border: none;
color: var(--color-main-text);
transition: background-color var(--animation-quick, 200ms) ease-in-out;

&:hover,
&:focus-visible {
Expand All @@ -364,11 +374,12 @@ $content-inset: calc(3 * var(--default-grid-baseline));
&::before {
content: '';
position: absolute;
inset-block: var(--default-grid-baseline);
inset-block: calc(var(--default-grid-baseline, 4px) * 2);
inset-inline-start: 0;
width: 3px;
background-color: var(--color-primary-element);
border-radius: 999px;
animation: nc-settings-pill-in var(--animation-quick, 200ms) ease-out;
}
}

Expand Down Expand Up @@ -475,6 +486,17 @@ $content-inset: calc(3 * var(--default-grid-baseline));
}
}
}

@keyframes nc-settings-pill-in {
from {
transform: scaleY(0);
opacity: 0;
}
to {
transform: scaleY(1);
opacity: 1;
}
}
</style>

<docs>
Expand Down
Loading