Commit f5363546 by Muhammad Usman

career history - skills view completed

parent 01da9b7d
<p> <h4 class="tab-heading">Tell us about your Skills</h4>
skills works!
</p> <div class="row" style="margin-top: 24px;">
<div class="col-md-12">
<span>We have identified the following skills based on your Work experience, Educational qualifications or certification. How would you rate yourself? </span>
</div>
</div>
<div class="row skill-wrapper">
<div class="col-md-12">
<div class="skill-name">New Product Launch</div>
</div>
<div class="col-md-6">
<p-selectButton [options]="options"></p-selectButton>
</div>
</div>
<div class="row">
<div class="col-md-12">
<button pButton class="btn btn-info-outline add-more" label="Add Skill +"></button>
</div>
</div>
<div class="d-flex justify-content-center" style="margin-top: 48px;">
<button pButton label="Next Section" class="ui-button-info next-section"></button>
</div>
...@@ -7,7 +7,16 @@ import { Component, OnInit } from '@angular/core'; ...@@ -7,7 +7,16 @@ import { Component, OnInit } from '@angular/core';
}) })
export class SkillsComponent implements OnInit { export class SkillsComponent implements OnInit {
constructor() { } options = [
{label: 'New York', value: {id: 1, name: 'New York', code: 'NY'}},
{label: 'Rome', value: {id: 2, name: 'Rome', code: 'RM'}},
{label: 'London', value: {id: 3, name: 'London', code: 'LDN'}},
{label: 'Istanbul', value: {id: 4, name: 'Istanbul', code: 'IST'}},
{label: 'Paris', value: {id: 5, name: 'Paris', code: 'PRS'}}
];
constructor() {
}
ngOnInit() { ngOnInit() {
} }
......
...@@ -22,6 +22,7 @@ import { TruncatePipe } from './truncate.pipe'; ...@@ -22,6 +22,7 @@ import { TruncatePipe } from './truncate.pipe';
import { TabViewModule } from 'primeng/tabview'; import { TabViewModule } from 'primeng/tabview';
import { CalendarModule } from 'primeng/calendar'; import { CalendarModule } from 'primeng/calendar';
import { FileUploadModule } from 'primeng/fileupload'; import { FileUploadModule } from 'primeng/fileupload';
import { SelectButtonModule } from 'primeng/selectbutton';
const MODULES = [ const MODULES = [
ReactiveFormsModule, ReactiveFormsModule,
...@@ -39,6 +40,7 @@ const MODULES = [ ...@@ -39,6 +40,7 @@ const MODULES = [
TabViewModule, TabViewModule,
CalendarModule, CalendarModule,
FileUploadModule, FileUploadModule,
SelectButtonModule
]; ];
const COMPONENTS = [ const COMPONENTS = [
......
...@@ -73,6 +73,11 @@ ...@@ -73,6 +73,11 @@
background: #127BAD; background: #127BAD;
} }
&:disabled {
background: #b1bcc1;
pointer-events: none;
}
&.google-login { &.google-login {
background-color: #de5246; background-color: #de5246;
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
white-space: nowrap; white-space: nowrap;
} }
.experience-wrapper, .education-wrapper { .experience-wrapper, .education-wrapper, .skill-wrapper {
margin-bottom: 32px; margin-bottom: 32px;
} }
......
...@@ -22,5 +22,6 @@ ...@@ -22,5 +22,6 @@
@import "primeng/tab-view"; @import "primeng/tab-view";
@import "primeng/calendar"; @import "primeng/calendar";
@import "primeng/file-upload"; @import "primeng/file-upload";
@import "primeng/select-button";
} }
.ui-selectbutton {
border-color: $primaryColor;
.ui-button {
display: flex;
align-items: center;
justify-content: center;
margin: 0;
border-color: $primaryColor !important;
&:first-child {
border-left: 0;
}
&-text {
margin-top: 0;
color: $primaryColor !important;
}
&.ui-state-active {
color: $white;
background: $primaryColor !important;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment