CSS for dropdown breadcrumb

This commit is contained in:
Adina Țeudan 2022-02-22 00:56:14 +02:00
parent b4460732f8
commit e2f8536551
3 changed files with 28 additions and 1 deletions

View File

@ -30,7 +30,6 @@
.menu {
display: flex;
align-items: center;
overflow: hidden;
&.right {
justify-content: flex-end;

View File

@ -12,6 +12,16 @@
width: 16px;
min-width: 16px;
}
.dropdown-breadcrumb {
font-weight: 600;
color: var(--iqser-primary);
&[aria-expanded='true'] .mat-button-wrapper > span {
color: var(--iqser-accent);
}
}
}
.breadcrumbs {

View File

@ -62,5 +62,23 @@
&:hover {
background-color: rgba(var(--iqser-primary-rgb), 0.1);
}
.checkmark {
display: none;
width: 10px;
height: 10px;
color: var(--iqser-primary);
}
&.active {
font-weight: 600;
padding-right: 8px;
justify-content: space-between;
.checkmark {
display: flex;
}
}
}
}