ui fixes on dmp tour
This commit is contained in:
parent
1f90266057
commit
9ad0c59b9e
|
@ -131,7 +131,8 @@ export class DmpListingComponent extends BaseComponent implements OnInit { //IBr
|
||||||
selector: '.dataset-tour',
|
selector: '.dataset-tour',
|
||||||
content: 'Step 2',
|
content: 'Step 2',
|
||||||
orientation: Orientation.Right,
|
orientation: Orientation.Right,
|
||||||
isStepUnique: false
|
isStepUnique: false,
|
||||||
|
useHighlightPadding: true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
.nav-row {
|
.nav-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -43,6 +44,19 @@
|
||||||
font-family: 'Roboto',sans-serif;
|
font-family: 'Roboto',sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-subrow {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
letter-spacing: 0px;
|
||||||
|
color: #000000;
|
||||||
|
opacity: 1;
|
||||||
|
font-size: 0.93rem;
|
||||||
|
font-family: 'Roboto',sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-row:hover {
|
.nav-row:hover {
|
||||||
background-color: #ececec;
|
background-color: #ececec;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
|
|
@ -9,11 +9,13 @@
|
||||||
<i *ngIf="groupMenuRoute.path == '/plans'" class="material-symbols-outlined icon-mask">person</i>
|
<i *ngIf="groupMenuRoute.path == '/plans'" class="material-symbols-outlined icon-mask">person</i>
|
||||||
<span [ngClass]="{'pl-0': groupMenuRoute.path == '/plans'}">{{groupMenuRoute.title | translate}}</span>
|
<span [ngClass]="{'pl-0': groupMenuRoute.path == '/plans'}">{{groupMenuRoute.title | translate}}</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="nav-link nav-row dataset-tour" *ngIf="groupMenuRoute.path === '/descriptions'" [routerLink]="[groupMenuRoute.path]">
|
<a class="nav-link nav-row" *ngIf="groupMenuRoute.path === '/descriptions'" [routerLink]="[groupMenuRoute.path]">
|
||||||
<span class="inner-line"></span>
|
<span class="mb-2 inner-line"></span>
|
||||||
|
<div class="pl-0 pt-1 pb-1 container-fluid nav-subrow dataset-tour">
|
||||||
<i class="material-symbols-outlined icon">{{ groupMenuRoute.icon }}</i>
|
<i class="material-symbols-outlined icon">{{ groupMenuRoute.icon }}</i>
|
||||||
<i class="material-symbols-outlined icon-mask">person</i>
|
<i class="material-symbols-outlined icon-mask">person</i>
|
||||||
<span class="pl-0">{{groupMenuRoute.title | translate}}</span>
|
<span class="pl-0">{{groupMenuRoute.title | translate}}</span>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<a class="nav-link nav-row" *ngIf="groupMenuRoute.path === '/co-branding'" href="/splash/resources/co-branding.html">
|
<a class="nav-link nav-row" *ngIf="groupMenuRoute.path === '/co-branding'" href="/splash/resources/co-branding.html">
|
||||||
<i class="material-symbols-outlined icon">{{ groupMenuRoute.icon }}</i>
|
<i class="material-symbols-outlined icon">{{ groupMenuRoute.icon }}</i>
|
||||||
|
|
Loading…
Reference in New Issue