change lib path refs components
This commit is contained in:
parent
54bf9d3fe2
commit
a88cfb8e3d
6 changed files with 34 additions and 21 deletions
1
.idea/vcs.xml
generated
1
.idea/vcs.xml
generated
|
@ -2,6 +2,5 @@
|
|||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/sae-airwatch" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
|
@ -4,6 +4,7 @@ import {DsNavbar} from './ds-navbar';
|
|||
import {CommonModule} from '@angular/common';
|
||||
import {Store, StoreModule} from '@ngrx/store';
|
||||
import {reducers} from '../reducers';
|
||||
import {ActivatedRoute, RouterModule} from '@angular/router';
|
||||
|
||||
const appReducer = reducers.app;
|
||||
|
||||
|
@ -16,9 +17,20 @@ const meta: Meta<DsNavbar> = {
|
|||
imports: [
|
||||
CommonModule,
|
||||
StoreModule.forRoot({app: appReducer as any}),
|
||||
RouterModule.forRoot([]),
|
||||
],
|
||||
providers: [
|
||||
Store
|
||||
Store,
|
||||
{
|
||||
provide: ActivatedRoute,
|
||||
useValue: {
|
||||
snapshot: {
|
||||
paramMap: {
|
||||
get: () => null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
})
|
||||
],
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</h2>
|
||||
<!-- traduction de requête-->
|
||||
<div id="translation_request">
|
||||
|
||||
<sae-color-display></sae-color-display>
|
||||
<div class="helper">
|
||||
<span>
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {TopNavigation} from '../../shared/navigation/top-navigation/top-navigation';
|
||||
import {TranslateTexts} from '../../../../../my-workspace/projects/sae-lib/translate-texts/translate-texts';
|
||||
import {Component} from '@angular/core';
|
||||
import {TranslateTexts} from 'sae-lib/inbox/translate-texts/translate-texts';
|
||||
import {FiltersGroup} from '../../../../../my-workspace/projects/sae-lib/filters/filters-group/filters-group';
|
||||
import {BottomNavigation} from '../../shared/navigation/bottom-navigation/bottom-navigation';
|
||||
import {ColorDisplay} from 'sae-lib/colours/color-display/color-display';
|
||||
|
||||
|
||||
@Component({
|
||||
|
@ -10,7 +10,8 @@ import {BottomNavigation} from '../../shared/navigation/bottom-navigation/bottom
|
|||
imports: [
|
||||
TranslateTexts,
|
||||
FiltersGroup,
|
||||
BottomNavigation
|
||||
BottomNavigation,
|
||||
ColorDisplay
|
||||
],
|
||||
templateUrl: './main.html',
|
||||
styleUrl: './main.scss'
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
<div class="top-navigation">
|
||||
|
||||
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||
<nav aria-label="main navigation" class="navbar" role="navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://cipherbliss.com">
|
||||
|
||||
<img src="safran_logo.svg" alt="logo">
|
||||
<img alt="logo" src="safran_logo.svg">
|
||||
</a>
|
||||
|
||||
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"
|
||||
data-target="navbarBasicExample">
|
||||
<a aria-expanded="false" aria-label="menu" class="navbar-burger" data-target="navbarBasicExample"
|
||||
role="button">
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
|
@ -16,19 +16,19 @@
|
|||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-menu" id="navbarBasicExample">
|
||||
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" routerLink="home" routerLinkActive="is-active">
|
||||
<img src="csc_logo.svg" alt="logo">
|
||||
<img alt="logo" src="csc_logo.svg">
|
||||
CSC Solution Matcher
|
||||
</a>
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
|
||||
<!-- <a class="navbar-item">-->
|
||||
<!-- Home-->
|
||||
<!-- </a>-->
|
||||
<!-- <a class="navbar-item">-->
|
||||
<!-- Home-->
|
||||
<!-- </a>-->
|
||||
<a class="navbar-item is-active">
|
||||
<i class="ri-admin-line"></i>
|
||||
Admin
|
||||
|
@ -43,7 +43,7 @@
|
|||
<!-- exit-->
|
||||
<i class="ri-door-line"></i>
|
||||
</a>
|
||||
<a class="navbar-item">
|
||||
<a class="navbar-item user-account-item">
|
||||
<!-- user -->
|
||||
<i class="ri-user-2-fill"></i>
|
||||
borhène
|
||||
|
@ -53,5 +53,5 @@
|
|||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- <app-alert-box></app-alert-box>-->
|
||||
<!-- <app-alert-box></app-alert-box>-->
|
||||
</div>
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
@use '../../../../styles/variables-barrel' as variables;
|
||||
.top-navigation{
|
||||
|
||||
.top-navigation {
|
||||
background: variables.$bg-color-nav;
|
||||
color: white;
|
||||
.is-active{
|
||||
color: #7FB8E7;
|
||||
|
||||
.is-active, .user-account-item {
|
||||
color: #7FB8E7;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue