diff --git a/.browserslistrc b/.browserslistrc new file mode 100644 index 000000000..4f9ac2698 --- /dev/null +++ b/.browserslistrc @@ -0,0 +1,16 @@ +# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries + +# For the full list of supported browsers by the Angular framework, please see: +# https://angular.io/guide/browser-support + +# You can see what browsers were selected by your queries by running: +# npx browserslist + +last 1 Chrome version +last 1 Firefox version +last 2 Edge major versions +last 2 Safari major versions +last 2 iOS major versions +Firefox ESR diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..0a592d43d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# Editor configuration, see https://editorconfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.ts] +quote_type = single + +[*.md] +max_line_length = off +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..941084510 --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. + +# compiled output +/dist +/tmp +/out-tsc +# Only exists if Bazel was run +/bazel-out + +# dependencies +/node_modules +package-lock.json + +# profiling files +chrome-profiler-events*.json + +# IDEs and editors +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +.history/* + +# misc +/.angular/cache +/.sass-cache +/connect.lock +/coverage +/libpeerconnection.log +npm-debug.log +yarn-error.log +testem.log +/typings + +# e2e +/e2e/*.js +/e2e/*.map + +# System Files +.DS_Store +Thumbs.db diff --git a/Angular4_CLI_Full_Project/.angular-cli.json b/Angular4_CLI_Full_Project/.angular-cli.json deleted file mode 100644 index f1349b770..000000000 --- a/Angular4_CLI_Full_Project/.angular-cli.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "$schema": "./node_modules/@angular/cli/lib/config/schema.json", - "project": { - "version": "1.0.5", - "name": "@coreui/angular" - }, - "apps": [ - { - "root": "src", - "outDir": "dist", - "assets": ["assets"], - "index": "index.html", - "main": "main.ts", - "polyfills": "polyfills.ts", - "test": "test.ts", - "tsconfig": "tsconfig.app.json", - "testTsconfig": "tsconfig.spec.json", - "prefix": "app", - "styles": [ - "../node_modules/font-awesome/css/font-awesome.css", - "../node_modules/simple-line-icons/css/simple-line-icons.css", - "scss/style.scss" - ], - "scripts": [ - "../node_modules/chart.js/dist/Chart.bundle.min.js", - "../node_modules/chart.js/dist/Chart.min.js" - ], - "environmentSource": "environments/environment.ts", - "environments": { - "dev": "environments/environment.ts", - "prod": "environments/environment.prod.ts" - } - } - ], - "e2e": { - "protractor": { - "config": "./protractor.conf.js" - } - }, - "lint": [ - { - "project": "src/tsconfig.app.json" - }, - { - "project": "src/tsconfig.spec.json" - }, - { - "project": "e2e/tsconfig.e2e.json" - } - ], - "test": { - "karma": { - "config": "./karma.conf.js" - } - }, - "defaults": { - "styleExt": "scss", - "prefixInterfaces": false - } -} diff --git a/Angular4_CLI_Full_Project/.editorconfig b/Angular4_CLI_Full_Project/.editorconfig deleted file mode 100644 index 149460f87..000000000 --- a/Angular4_CLI_Full_Project/.editorconfig +++ /dev/null @@ -1,22 +0,0 @@ -# Editor configuration, see http://editorconfig.org -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 2 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -[*.ts] -charset = utf-8 -indent_style = space -indent_size = 2 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -[*.md] -max_line_length = 0 -trim_trailing_whitespace = false diff --git a/Angular4_CLI_Full_Project/.gitignore b/Angular4_CLI_Full_Project/.gitignore deleted file mode 100644 index 29ce7d5c6..000000000 --- a/Angular4_CLI_Full_Project/.gitignore +++ /dev/null @@ -1,33 +0,0 @@ -# See http://help.github.com/ignore-files/ for more about ignoring files. - -# compiled output -/dist -/tmp - -# dependencies -node_modules -bower_components - -# IDEs and editors -.idea -.project -.classpath -*.launch -.settings/ - -# misc -/.sass-cache -/connect.lock -/coverage/* -/libpeerconnection.log -npm-debug.log -testem.log -/typings - -# e2e -/e2e/*.js -/e2e/*.map - -#System Files -.DS_Store -Thumbs.db diff --git a/Angular4_CLI_Full_Project/README.md b/Angular4_CLI_Full_Project/README.md deleted file mode 100644 index 8065ee4ff..000000000 --- a/Angular4_CLI_Full_Project/README.md +++ /dev/null @@ -1,27 +0,0 @@ -# Angular2DevelopmentCLI - -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.0-beta.32.3. - -## Development server -Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. - -## Code scaffolding - -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive/pipe/service/class/module`. - -## Build - -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build. - -## Running unit tests - -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). - -## Running end-to-end tests - -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). -Before running the tests make sure you are serving the app via `ng serve`. - -## Further help - -To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). diff --git a/Angular4_CLI_Full_Project/e2e/app.e2e-spec.ts b/Angular4_CLI_Full_Project/e2e/app.e2e-spec.ts deleted file mode 100644 index 022797d62..000000000 --- a/Angular4_CLI_Full_Project/e2e/app.e2e-spec.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { CoreUIPage } from './app.po'; - -describe('core-ui App', function() { - let page: CoreUIPage; - - beforeEach(() => { - page = new CoreUIPage(); - }); - - it('should display message saying app works', () => { - page.navigateTo(); - expect(page.getParagraphText()).toEqual('app works!'); - }); -}); diff --git a/Angular4_CLI_Full_Project/e2e/app.po.ts b/Angular4_CLI_Full_Project/e2e/app.po.ts deleted file mode 100644 index d51eaf2b7..000000000 --- a/Angular4_CLI_Full_Project/e2e/app.po.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { browser, element, by } from 'protractor/globals'; - -export class CoreUIPage { - navigateTo() { - return browser.get('/'); - } - - getParagraphText() { - return element(by.css('app-root h1')).getText(); - } -} diff --git a/Angular4_CLI_Full_Project/karma.conf.js b/Angular4_CLI_Full_Project/karma.conf.js deleted file mode 100644 index 84b4cd5ac..000000000 --- a/Angular4_CLI_Full_Project/karma.conf.js +++ /dev/null @@ -1,44 +0,0 @@ -// Karma configuration file, see link for more information -// https://karma-runner.github.io/0.13/config/configuration-file.html - -module.exports = function (config) { - config.set({ - basePath: '', - frameworks: ['jasmine', '@angular/cli'], - plugins: [ - require('karma-jasmine'), - require('karma-chrome-launcher'), - require('karma-jasmine-html-reporter'), - require('karma-coverage-istanbul-reporter'), - require('@angular/cli/plugins/karma') - ], - client:{ - clearContext: false // leave Jasmine Spec Runner output visible in browser - }, - files: [ - { pattern: './src/test.ts', watched: false } - ], - preprocessors: { - './src/test.ts': ['@angular/cli'] - }, - mime: { - 'text/x-typescript': ['ts','tsx'] - }, - coverageIstanbulReporter: { - reports: [ 'html', 'lcovonly' ], - fixWebpackSourcePaths: true - }, - angularCli: { - environment: 'dev' - }, - reporters: config.angularCli && config.angularCli.codeCoverage - ? ['progress', 'coverage-istanbul'] - : ['progress', 'kjhtml'], - port: 9876, - colors: true, - logLevel: config.LOG_INFO, - autoWatch: true, - browsers: ['Chrome'], - singleRun: false - }); -}; diff --git a/Angular4_CLI_Full_Project/package.json b/Angular4_CLI_Full_Project/package.json deleted file mode 100644 index bdc35a352..000000000 --- a/Angular4_CLI_Full_Project/package.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "@coreui/angular", - "version": "1.0.5", - "description": "Open Source Bootstrap Admin Template", - "author": "Łukasz Holeczek", - "homepage": "http://coreui.io/", - "copyright": "Copyright 2017 creativeLabs Łukasz Holeczek", - "license": "MIT", - "scripts": { - "ng": "ng", - "start": "ng serve", - "build": "ng build", - "test": "ng test", - "lint": "ng lint", - "e2e": "ng e2e" - }, - "private": true, - "dependencies": { - "@angular/common": "5.0.1", - "@angular/compiler": "5.0.1", - "@angular/core": "5.0.1", - "@angular/forms": "5.0.1", - "@angular/http": "5.0.1", - "@angular/platform-browser": "5.0.1", - "@angular/platform-browser-dynamic": "5.0.1", - "@angular/router": "5.0.1", - "@angular/upgrade": "5.0.1", - "bootstrap": "4.0.0-beta.2", - "chart.js": "2.7.1", - "core-js": "2.5.1", - "font-awesome": "^4.7.0", - "moment": "2.19.1", - "ng2-charts": "1.6.0", - "ngx-bootstrap": "1.9.3", - "rxjs": "5.5.2", - "simple-line-icons": "^2.4.1", - "ts-helpers": "1.1.2", - "zone.js": "0.8.18" - }, - "devDependencies": { - "@angular/cli": "1.5.0", - "@angular/compiler-cli": "5.0.1", - "@types/jasmine": "2.6.3", - "@types/node": "8.0.50", - "codelyzer": "4.0.1", - "jasmine-core": "2.8.0", - "jasmine-spec-reporter": "4.2.1", - "karma": "1.7.1", - "karma-chrome-launcher": "2.2.0", - "karma-cli": "1.0.1", - "karma-jasmine": "1.1.0", - "karma-jasmine-html-reporter": "0.2.2", - "karma-coverage-istanbul-reporter": "1.3.0", - "protractor": "5.2.0", - "ts-node": "3.3.0", - "tslint": "5.8.0", - "typescript": "2.6.1" - }, - "engines": { - "node": ">= 6.9.0", - "npm": ">= 3.0.0" - } -} diff --git a/Angular4_CLI_Full_Project/src/app/_nav.ts b/Angular4_CLI_Full_Project/src/app/_nav.ts deleted file mode 100644 index dbe4d1698..000000000 --- a/Angular4_CLI_Full_Project/src/app/_nav.ts +++ /dev/null @@ -1,144 +0,0 @@ -export const navigation = [ - { - name: 'Dashboard', - url: '/dashboard', - icon: 'icon-speedometer', - badge: { - variant: 'info', - text: 'NEW' - } - }, - { - title: true, - name: 'UI elements' - }, - { - name: 'Components', - url: '/components', - icon: 'icon-puzzle', - children: [ - { - name: 'Buttons', - url: '/components/buttons', - icon: 'icon-puzzle' - }, - { - name: 'Social Buttons', - url: '/components/social-buttons', - icon: 'icon-puzzle' - }, - { - name: 'Cards', - url: '/components/cards', - icon: 'icon-puzzle' - }, - { - name: 'Forms', - url: '/components/forms', - icon: 'icon-puzzle' - }, - { - name: 'Modals', - url: '/components/modals', - icon: 'icon-puzzle' - }, - { - name: 'Switches', - url: '/components/switches', - icon: 'icon-puzzle' - }, - { - name: 'Tables', - url: '/components/tables', - icon: 'icon-puzzle' - }, - { - name: 'Tabs', - url: '/components/tabs', - icon: 'icon-puzzle' - } - ] - }, - { - name: 'Icons', - url: '/icons', - icon: 'icon-star', - children: [ - { - name: 'Font Awesome', - url: '/icons/font-awesome', - icon: 'icon-star', - badge: { - variant: 'secondary', - text: '4.7' - } - }, - { - name: 'Simple Line Icons', - url: '/icons/simple-line-icons', - icon: 'icon-star' - } - ] - }, - { - name: 'Widgets', - url: '/widgets', - icon: 'icon-calculator', - badge: { - variant: 'info', - text: 'NEW' - } - }, - { - name: 'Charts', - url: '/charts', - icon: 'icon-pie-chart' - }, - { - divider: true - }, - { - title: true, - name: 'Extras', - }, - { - name: 'Pages', - url: '/pages', - icon: 'icon-star', - children: [ - { - name: 'Login', - url: '/pages/login', - icon: 'icon-star' - }, - { - name: 'Register', - url: '/pages/register', - icon: 'icon-star' - }, - { - name: 'Error 404', - url: '/pages/404', - icon: 'icon-star' - }, - { - name: 'Error 500', - url: '/pages/500', - icon: 'icon-star' - } - ] - }, - { - name: 'Download CoreUI', - url: 'http://coreui.io/angular/', - icon: 'icon-cloud-download', - class: 'mt-auto', - variant: 'success' - }, - { - name: 'Try CoreUI PRO', - url: 'http://coreui.io/pro/angular/', - icon: 'icon-layers', - variant: 'danger' - } -]; diff --git a/Angular4_CLI_Full_Project/src/app/app.component.spec.ts b/Angular4_CLI_Full_Project/src/app/app.component.spec.ts deleted file mode 100644 index 13c632d67..000000000 --- a/Angular4_CLI_Full_Project/src/app/app.component.spec.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { TestBed, async } from '@angular/core/testing'; -import { AppComponent } from './app.component'; - -describe('AppComponent', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - declarations: [ - AppComponent - ], - }); - TestBed.compileComponents(); - }); - - it('should create the app', async(() => { - const fixture = TestBed.createComponent(AppComponent); - const app = fixture.debugElement.componentInstance; - expect(app).toBeTruthy(); - })); - - it(`should have as title 'app works!'`, async(() => { - const fixture = TestBed.createComponent(AppComponent); - const app = fixture.debugElement.componentInstance; - expect(app.title).toEqual('app works!'); - })); - - it('should render title in a h1 tag', async(() => { - const fixture = TestBed.createComponent(AppComponent); - fixture.detectChanges(); - const compiled = fixture.debugElement.nativeElement; - expect(compiled.querySelector('h1').textContent).toContain('app works!'); - })); -}); diff --git a/Angular4_CLI_Full_Project/src/app/app.component.ts b/Angular4_CLI_Full_Project/src/app/app.component.ts deleted file mode 100644 index 5095d21c1..000000000 --- a/Angular4_CLI_Full_Project/src/app/app.component.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - // tslint:disable-next-line - selector: 'body', - template: '' -}) -export class AppComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/app.module.ts b/Angular4_CLI_Full_Project/src/app/app.module.ts deleted file mode 100644 index 03ddd34e4..000000000 --- a/Angular4_CLI_Full_Project/src/app/app.module.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { BrowserModule } from '@angular/platform-browser'; -import { NgModule } from '@angular/core'; -import { LocationStrategy, HashLocationStrategy } from '@angular/common'; - -import { AppComponent } from './app.component'; - -// Import containers -import { - FullLayoutComponent, - SimpleLayoutComponent -} from './containers'; - -const APP_CONTAINERS = [ - FullLayoutComponent, - SimpleLayoutComponent -] - -// Import components -import { - AppAsideComponent, - AppBreadcrumbsComponent, - AppFooterComponent, - AppHeaderComponent, - AppSidebarComponent, - AppSidebarFooterComponent, - AppSidebarFormComponent, - AppSidebarHeaderComponent, - AppSidebarMinimizerComponent, - APP_SIDEBAR_NAV -} from './components'; - -const APP_COMPONENTS = [ - AppAsideComponent, - AppBreadcrumbsComponent, - AppFooterComponent, - AppHeaderComponent, - AppSidebarComponent, - AppSidebarFooterComponent, - AppSidebarFormComponent, - AppSidebarHeaderComponent, - AppSidebarMinimizerComponent, - APP_SIDEBAR_NAV -] - -// Import directives -import { - AsideToggleDirective, - NAV_DROPDOWN_DIRECTIVES, - ReplaceDirective, - SIDEBAR_TOGGLE_DIRECTIVES -} from './directives'; - -const APP_DIRECTIVES = [ - AsideToggleDirective, - NAV_DROPDOWN_DIRECTIVES, - ReplaceDirective, - SIDEBAR_TOGGLE_DIRECTIVES -] - -// Import routing module -import { AppRoutingModule } from './app.routing'; - -// Import 3rd party components -import { BsDropdownModule } from 'ngx-bootstrap/dropdown'; -import { TabsModule } from 'ngx-bootstrap/tabs'; -import { ChartsModule } from 'ng2-charts/ng2-charts'; - -@NgModule({ - imports: [ - BrowserModule, - AppRoutingModule, - BsDropdownModule.forRoot(), - TabsModule.forRoot(), - ChartsModule - ], - declarations: [ - AppComponent, - ...APP_CONTAINERS, - ...APP_COMPONENTS, - ...APP_DIRECTIVES - ], - providers: [{ - provide: LocationStrategy, - useClass: HashLocationStrategy - }], - bootstrap: [ AppComponent ] -}) -export class AppModule { } diff --git a/Angular4_CLI_Full_Project/src/app/app.routing.ts b/Angular4_CLI_Full_Project/src/app/app.routing.ts deleted file mode 100644 index 0828a0cba..000000000 --- a/Angular4_CLI_Full_Project/src/app/app.routing.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// Import Containers -import { - FullLayoutComponent, - SimpleLayoutComponent -} from './containers'; - -export const routes: Routes = [ - { - path: '', - redirectTo: 'dashboard', - pathMatch: 'full', - }, - { - path: '', - component: FullLayoutComponent, - data: { - title: 'Home' - }, - children: [ - { - path: 'dashboard', - loadChildren: './views/dashboard/dashboard.module#DashboardModule' - }, - { - path: 'components', - loadChildren: './views/components/components.module#ComponentsModule' - }, - { - path: 'icons', - loadChildren: './views/icons/icons.module#IconsModule' - }, - { - path: 'widgets', - loadChildren: './views/widgets/widgets.module#WidgetsModule' - }, - { - path: 'charts', - loadChildren: './views/chartjs/chartjs.module#ChartJSModule' - } - ] - }, - { - path: 'pages', - component: SimpleLayoutComponent, - data: { - title: 'Pages' - }, - children: [ - { - path: '', - loadChildren: './views/pages/pages.module#PagesModule', - } - ] - } -]; - -@NgModule({ - imports: [ RouterModule.forRoot(routes) ], - exports: [ RouterModule ] -}) -export class AppRoutingModule {} diff --git a/Angular4_CLI_Full_Project/src/app/components/app-aside/app-aside.component.html b/Angular4_CLI_Full_Project/src/app/components/app-aside/app-aside.component.html deleted file mode 100644 index 3da31fff1..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-aside/app-aside.component.html +++ /dev/null @@ -1,253 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-aside/app-aside.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-aside/app-aside.component.ts deleted file mode 100644 index e2fa523f8..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-aside/app-aside.component.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-aside', - templateUrl: './app-aside.component.html' -}) -export class AppAsideComponent { - - constructor() { } -} diff --git a/Angular4_CLI_Full_Project/src/app/components/app-aside/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-aside/index.ts deleted file mode 100644 index 2cf83607b..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-aside/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-aside.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-breadcrumbs/app-breadcrumbs.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-breadcrumbs/app-breadcrumbs.component.ts deleted file mode 100644 index 555164a96..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-breadcrumbs/app-breadcrumbs.component.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { Component } from '@angular/core'; -import { Router, ActivatedRoute, NavigationEnd } from '@angular/router'; -import 'rxjs/add/operator/filter'; - -@Component({ - selector: 'app-breadcrumbs', - template: ` - - - ` -}) -export class AppBreadcrumbsComponent { - breadcrumbs: Array; - constructor( - private router: Router, - private route: ActivatedRoute - ) { - this.router.events.filter(event => event instanceof NavigationEnd).subscribe((event) => { - this.breadcrumbs = []; - let currentRoute = this.route.root, - url = ''; - do { - const childrenRoutes = currentRoute.children; - currentRoute = null; - // tslint:disable-next-line:no-shadowed-variable - childrenRoutes.forEach(route => { - if (route.outlet === 'primary') { - const routeSnapshot = route.snapshot; - url += '/' + routeSnapshot.url.map(segment => segment.path).join('/'); - this.breadcrumbs.push({ - label: route.snapshot.data, - url: url - }); - currentRoute = route; - } - }); - } while (currentRoute); - }); - } -} diff --git a/Angular4_CLI_Full_Project/src/app/components/app-breadcrumbs/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-breadcrumbs/index.ts deleted file mode 100644 index bacc99d1a..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-breadcrumbs/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-breadcrumbs.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-footer/app-footer.component.html b/Angular4_CLI_Full_Project/src/app/components/app-footer/app-footer.component.html deleted file mode 100644 index 67da272fa..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-footer/app-footer.component.html +++ /dev/null @@ -1,4 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-footer/app-footer.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-footer/app-footer.component.ts deleted file mode 100644 index 1e8f1ae7d..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-footer/app-footer.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-footer', - templateUrl: './app-footer.component.html' -}) -export class AppFooterComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-footer/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-footer/index.ts deleted file mode 100644 index f029f1401..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-footer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-footer.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-header/app-header.component.html b/Angular4_CLI_Full_Project/src/app/components/app-header/app-header.component.html deleted file mode 100644 index 5e69ae87a..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-header/app-header.component.html +++ /dev/null @@ -1,54 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-header/app-header.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-header/app-header.component.ts deleted file mode 100644 index ee30134c6..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-header/app-header.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-header', - templateUrl: './app-header.component.html' -}) -export class AppHeaderComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-header/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-header/index.ts deleted file mode 100644 index dcfab511d..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-header/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-header.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/app-sidebar-footer.component.html b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/app-sidebar-footer.component.html deleted file mode 100644 index 63d421dd0..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/app-sidebar-footer.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/app-sidebar-footer.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/app-sidebar-footer.component.ts deleted file mode 100644 index 9b2e92e26..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/app-sidebar-footer.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-footer', - templateUrl: './app-sidebar-footer.component.html' -}) -export class AppSidebarFooterComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/index.ts deleted file mode 100644 index 5c8e33e88..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-footer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-footer.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/app-sidebar-form.component.html b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/app-sidebar-form.component.html deleted file mode 100644 index b5f736b8f..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/app-sidebar-form.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/app-sidebar-form.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/app-sidebar-form.component.ts deleted file mode 100644 index e1a39dc12..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/app-sidebar-form.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-form', - templateUrl: './app-sidebar-form.component.html' -}) -export class AppSidebarFormComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/index.ts deleted file mode 100644 index 63300f660..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-form/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-form.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/app-sidebar-header.component.html b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/app-sidebar-header.component.html deleted file mode 100644 index 807585ce2..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/app-sidebar-header.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/app-sidebar-header.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/app-sidebar-header.component.ts deleted file mode 100644 index db1182ae5..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/app-sidebar-header.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-header', - templateUrl: './app-sidebar-header.component.html' -}) -export class AppSidebarHeaderComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/index.ts deleted file mode 100644 index 6b1403eab..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-header/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-header.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.html b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.html deleted file mode 100644 index 462b3db25..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.ts deleted file mode 100644 index 5378fbff9..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-minimizer', - templateUrl: './app-sidebar-minimizer.component.html' -}) -export class AppSidebarMinimizerComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/index.ts deleted file mode 100644 index 5b646bd76..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-minimizer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-minimizer.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-nav/app-sidebar-nav.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-nav/app-sidebar-nav.component.ts deleted file mode 100644 index 1e7baa0ee..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-nav/app-sidebar-nav.component.ts +++ /dev/null @@ -1,189 +0,0 @@ -import { Component, ElementRef, Input, OnInit, Renderer2 } from '@angular/core'; - -// Import navigation elements -import { navigation } from './../../_nav'; - -@Component({ - selector: 'app-sidebar-nav', - template: ` - ` -}) -export class AppSidebarNavComponent { - - public navigation = navigation; - - public isDivider(item) { - return item.divider ? true : false - } - - public isTitle(item) { - return item.title ? true : false - } - - constructor() { } -} - -import { Router } from '@angular/router'; - -@Component({ - selector: 'app-sidebar-nav-item', - template: ` -
  • - -
  • - -
  • - -
  • -
    - ` -}) -export class AppSidebarNavItemComponent { - @Input() item: any; - - public hasClass() { - return this.item.class ? true : false - } - - public isDropdown() { - return this.item.children ? true : false - } - - public thisUrl() { - return this.item.url - } - - public isActive() { - return this.router.isActive(this.thisUrl(), false) - } - - constructor( private router: Router ) { } - -} - -@Component({ - selector: 'app-sidebar-nav-link', - template: ` - - - {{ link.name }} - {{ link.badge.text }} - - - - - {{ link.name }} - {{ link.badge.text }} - - - ` -}) -export class AppSidebarNavLinkComponent { - @Input() link: any; - - public hasVariant() { - return this.link.variant ? true : false - } - - public isBadge() { - return this.link.badge ? true : false - } - - public isExternalLink() { - return this.link.url.substring(0, 4) === 'http' ? true : false - } - - public isIcon() { - return this.link.icon ? true : false - } - - constructor() { } -} - -@Component({ - selector: 'app-sidebar-nav-dropdown', - template: ` - - - {{ link.name }} - {{ link.badge.text }} - - - ` -}) -export class AppSidebarNavDropdownComponent { - @Input() link: any; - - public isBadge() { - return this.link.badge ? true : false - } - - public isIcon() { - return this.link.icon ? true : false - } - - constructor() { } -} - -@Component({ - selector: 'app-sidebar-nav-title', - template: '' -}) -export class AppSidebarNavTitleComponent implements OnInit { - @Input() title: any; - - constructor(private el: ElementRef, private renderer: Renderer2) { } - - ngOnInit() { - const nativeElement: HTMLElement = this.el.nativeElement; - const li = this.renderer.createElement('li'); - const name = this.renderer.createText(this.title.name); - - this.renderer.addClass(li, 'nav-title'); - - if ( this.title.class ) { - const classes = this.title.class; - this.renderer.addClass(li, classes); - } - - if ( this.title.wrapper ) { - const wrapper = this.renderer.createElement(this.title.wrapper.element); - - this.renderer.appendChild(wrapper, name); - this.renderer.appendChild(li, wrapper); - } else { - this.renderer.appendChild(li, name); - } - this.renderer.appendChild(nativeElement, li) - } -} - -export const APP_SIDEBAR_NAV = [ - AppSidebarNavComponent, - AppSidebarNavDropdownComponent, - AppSidebarNavItemComponent, - AppSidebarNavLinkComponent, - AppSidebarNavTitleComponent -]; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-nav/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar-nav/index.ts deleted file mode 100644 index 958932a26..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar-nav/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-nav.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar/app-sidebar.component.html b/Angular4_CLI_Full_Project/src/app/components/app-sidebar/app-sidebar.component.html deleted file mode 100644 index ac0dda4eb..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar/app-sidebar.component.html +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar/app-sidebar.component.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar/app-sidebar.component.ts deleted file mode 100644 index 7f5065cb5..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar/app-sidebar.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar', - templateUrl: './app-sidebar.component.html' -}) -export class AppSidebarComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/components/app-sidebar/index.ts b/Angular4_CLI_Full_Project/src/app/components/app-sidebar/index.ts deleted file mode 100644 index 173dc43d8..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/app-sidebar/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar.component'; diff --git a/Angular4_CLI_Full_Project/src/app/components/index.ts b/Angular4_CLI_Full_Project/src/app/components/index.ts deleted file mode 100644 index 9980de04d..000000000 --- a/Angular4_CLI_Full_Project/src/app/components/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export * from './app-aside'; -export * from './app-breadcrumbs'; -export * from './app-footer'; -export * from './app-header'; -export * from './app-sidebar'; -export * from './app-sidebar-footer'; -export * from './app-sidebar-form'; -export * from './app-sidebar-header'; -export * from './app-sidebar-minimizer'; -export * from './app-sidebar-nav'; diff --git a/Angular4_CLI_Full_Project/src/app/containers/full-layout/full-layout.component.html b/Angular4_CLI_Full_Project/src/app/containers/full-layout/full-layout.component.html deleted file mode 100644 index ada4f03ba..000000000 --- a/Angular4_CLI_Full_Project/src/app/containers/full-layout/full-layout.component.html +++ /dev/null @@ -1,24 +0,0 @@ - -
    - - -
    - - -
    - -
    -
    - -
    - diff --git a/Angular4_CLI_Full_Project/src/app/containers/full-layout/full-layout.component.ts b/Angular4_CLI_Full_Project/src/app/containers/full-layout/full-layout.component.ts deleted file mode 100644 index 753518cac..000000000 --- a/Angular4_CLI_Full_Project/src/app/containers/full-layout/full-layout.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-dashboard', - templateUrl: './full-layout.component.html' -}) -export class FullLayoutComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/containers/full-layout/index.ts b/Angular4_CLI_Full_Project/src/app/containers/full-layout/index.ts deleted file mode 100644 index 315223dd1..000000000 --- a/Angular4_CLI_Full_Project/src/app/containers/full-layout/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './full-layout.component'; diff --git a/Angular4_CLI_Full_Project/src/app/containers/index.ts b/Angular4_CLI_Full_Project/src/app/containers/index.ts deleted file mode 100644 index b917dd1ce..000000000 --- a/Angular4_CLI_Full_Project/src/app/containers/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './full-layout'; -export * from './simple-layout'; diff --git a/Angular4_CLI_Full_Project/src/app/containers/simple-layout/index.ts b/Angular4_CLI_Full_Project/src/app/containers/simple-layout/index.ts deleted file mode 100644 index 651070369..000000000 --- a/Angular4_CLI_Full_Project/src/app/containers/simple-layout/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './simple-layout.component'; diff --git a/Angular4_CLI_Full_Project/src/app/containers/simple-layout/simple-layout.component.ts b/Angular4_CLI_Full_Project/src/app/containers/simple-layout/simple-layout.component.ts deleted file mode 100644 index 90cca2e9e..000000000 --- a/Angular4_CLI_Full_Project/src/app/containers/simple-layout/simple-layout.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-dashboard', - template: '', -}) -export class SimpleLayoutComponent { } diff --git a/Angular4_CLI_Full_Project/src/app/directives/aside/aside.directive.ts b/Angular4_CLI_Full_Project/src/app/directives/aside/aside.directive.ts deleted file mode 100644 index b3cc4710a..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/aside/aside.directive.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Directive, HostListener } from '@angular/core'; - -/** -* Allows the aside to be toggled via click. -*/ -@Directive({ - selector: '[appAsideMenuToggler]', -}) -export class AsideToggleDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('aside-menu-hidden'); - } -} diff --git a/Angular4_CLI_Full_Project/src/app/directives/aside/index.ts b/Angular4_CLI_Full_Project/src/app/directives/aside/index.ts deleted file mode 100644 index 3b84b7004..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/aside/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './aside.directive'; diff --git a/Angular4_CLI_Full_Project/src/app/directives/index.ts b/Angular4_CLI_Full_Project/src/app/directives/index.ts deleted file mode 100644 index cd971e8fa..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from './aside'; -export * from './nav-dropdown'; -export * from './replace'; -export * from './sidebar'; diff --git a/Angular4_CLI_Full_Project/src/app/directives/nav-dropdown/index.ts b/Angular4_CLI_Full_Project/src/app/directives/nav-dropdown/index.ts deleted file mode 100644 index 3eb078779..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/nav-dropdown/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './nav-dropdown.directive'; diff --git a/Angular4_CLI_Full_Project/src/app/directives/nav-dropdown/nav-dropdown.directive.ts b/Angular4_CLI_Full_Project/src/app/directives/nav-dropdown/nav-dropdown.directive.ts deleted file mode 100644 index 98c827de8..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/nav-dropdown/nav-dropdown.directive.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Directive, HostListener, ElementRef } from '@angular/core'; - -@Directive({ - selector: '[appNavDropdown]' -}) -export class NavDropdownDirective { - - constructor(private el: ElementRef) { } - - toggle() { - this.el.nativeElement.classList.toggle('open'); - } -} - -/** -* Allows the dropdown to be toggled via click. -*/ -@Directive({ - selector: '[appNavDropdownToggle]' -}) -export class NavDropdownToggleDirective { - constructor(private dropdown: NavDropdownDirective) {} - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - this.dropdown.toggle(); - } -} - -export const NAV_DROPDOWN_DIRECTIVES = [NavDropdownDirective, NavDropdownToggleDirective]; diff --git a/Angular4_CLI_Full_Project/src/app/directives/replace/index.ts b/Angular4_CLI_Full_Project/src/app/directives/replace/index.ts deleted file mode 100644 index 8720adf84..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/replace/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './replace.directive'; diff --git a/Angular4_CLI_Full_Project/src/app/directives/replace/replace.directive.ts b/Angular4_CLI_Full_Project/src/app/directives/replace/replace.directive.ts deleted file mode 100644 index d5ca81e07..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/replace/replace.directive.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Directive, ElementRef, OnInit } from '@angular/core'; - -@Directive({ - // tslint:disable-next-line:max-line-length - selector: '[appHostReplace], app-aside, app-breadcrumbs, app-footer, app-header, app-sidebar, app-sidebar-footer, app-sidebar-form, app-sidebar-header, app-sidebar-minimizer, app-sidebar-nav, app-sidebar-nav-dropdown, app-sidebar-nav-item, app-sidebar-nav-link, app-sidebar-nav-title' -}) -export class ReplaceDirective implements OnInit { - - constructor(private el: ElementRef) { } - - // wait for the component to render completely - ngOnInit() { - const nativeElement: HTMLElement = this.el.nativeElement; - const parentElement: HTMLElement = nativeElement.parentElement; - // move all children out of the element - while (nativeElement.firstChild) { - parentElement.insertBefore(nativeElement.firstChild, nativeElement); - } - // remove the empty element(the host) - parentElement.removeChild(nativeElement); - } -} diff --git a/Angular4_CLI_Full_Project/src/app/directives/sidebar/index.ts b/Angular4_CLI_Full_Project/src/app/directives/sidebar/index.ts deleted file mode 100644 index aeb5775be..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/sidebar/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './sidebar.directive'; diff --git a/Angular4_CLI_Full_Project/src/app/directives/sidebar/sidebar.directive.ts b/Angular4_CLI_Full_Project/src/app/directives/sidebar/sidebar.directive.ts deleted file mode 100644 index 956465b39..000000000 --- a/Angular4_CLI_Full_Project/src/app/directives/sidebar/sidebar.directive.ts +++ /dev/null @@ -1,106 +0,0 @@ -import { Directive, HostListener } from '@angular/core'; - -/** -* Allows the sidebar to be toggled via click. -*/ -@Directive({ - selector: '[appSidebarToggler]' -}) -export class SidebarToggleDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('sidebar-hidden'); - } -} - -@Directive({ - selector: '[appSidebarMinimizer]' -}) -export class SidebarMinimizeDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('sidebar-minimized'); - } -} - -@Directive({ - selector: '[appBrandMinimizer]' -}) -export class BrandMinimizeDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('brand-minimized'); - } -} - -@Directive({ - selector: '[appMobileSidebarToggler]' -}) -export class MobileSidebarToggleDirective { - constructor() { } - - // Check if element has class - private hasClass(target: any, elementClassName: string) { - return new RegExp('(\\s|^)' + elementClassName + '(\\s|$)').test(target.className); - } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('sidebar-mobile-show'); - } -} - -/** -* Allows the off-canvas sidebar to be closed via click. -*/ -@Directive({ - selector: '[appSidebarClose]' -}) -export class SidebarOffCanvasCloseDirective { - constructor() { } - - // Check if element has class - private hasClass(target: any, elementClassName: string) { - return new RegExp('(\\s|^)' + elementClassName + '(\\s|$)').test(target.className); - } - - // Toggle element class - private toggleClass(elem: any, elementClassName: string) { - let newClass = ' ' + elem.className.replace( /[\t\r\n]/g, ' ' ) + ' '; - if (this.hasClass(elem, elementClassName)) { - while (newClass.indexOf(' ' + elementClassName + ' ') >= 0 ) { - newClass = newClass.replace( ' ' + elementClassName + ' ' , ' ' ); - } - elem.className = newClass.replace(/^\s+|\s+$/g, ''); - } else { - elem.className += ' ' + elementClassName; - } - } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - - if (this.hasClass(document.querySelector('body'), 'sidebar-off-canvas')) { - this.toggleClass(document.querySelector('body'), 'sidebar-opened'); - } - } -} - -export const SIDEBAR_TOGGLE_DIRECTIVES = [ - SidebarToggleDirective, - SidebarMinimizeDirective, - BrandMinimizeDirective, - SidebarOffCanvasCloseDirective, - MobileSidebarToggleDirective -]; diff --git a/Angular4_CLI_Full_Project/src/app/views/components/buttons.component.html b/Angular4_CLI_Full_Project/src/app/views/components/buttons.component.html deleted file mode 100644 index 690626934..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/buttons.component.html +++ /dev/null @@ -1,231 +0,0 @@ -
    -
    -
    -
    -
    - Options -
    -
    - - - - - - -
    -
    -
    -
    - With Icons -
    -
    - - - - - - -
    -
    -
    -
    - Size Large - Add this class - .btn-lg - -
    -
    - - - - - - - -
    -
    -
    -
    - Size Small - Add this class - .btn-sm - -
    -
    - - - - - - - -
    -
    -
    -
    - Disabled state - Add this - disabled="disabled" - -
    -
    - - - - - - - -
    -
    -
    -
    - Active state - Add this class - .active - -
    -
    - - - - - - - -
    -
    -
    -
    - Block Level Buttons - Add this class - .btn-block - -
    -
    - - - - - - - -
    -
    -
    - -
    -
    -
    - Options -
    -
    - - - - - - - - - - -
    -
    -
    -
    - With Icons -
    -
    - - - - - -
    -
    -
    -
    - Size Large - Add this class - .btn-lg - -
    -
    - - - - - - -
    -
    -
    -
    - Size Small - Add this class - .btn-sm - -
    -
    - - - - - - -
    -
    -
    -
    - Disabled state - Add this - disabled="disabled" - -
    -
    - - - - - - -
    -
    -
    -
    - Active state - Add this class - .active - -
    -
    - - - - - - -
    -
    -
    -
    - Block Level Buttons - Add this class - .btn-block - -
    -
    - - - - - - -
    -
    -
    - -
    - -
    diff --git a/Angular4_CLI_Full_Project/src/app/views/components/components-routing.module.ts b/Angular4_CLI_Full_Project/src/app/views/components/components-routing.module.ts deleted file mode 100644 index 2f5a1259a..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/components-routing.module.ts +++ /dev/null @@ -1,84 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -import { ButtonsComponent } from './buttons.component'; -import { CardsComponent } from './cards.component'; -import { FormsComponent } from './forms.component'; -import { ModalsComponent } from './modals.component'; -import { SocialButtonsComponent } from './social-buttons.component'; -import { SwitchesComponent } from './switches.component'; -import { TablesComponent } from './tables.component'; -import { TabsComponent } from './tabs.component'; - -const routes: Routes = [ - { - path: '', - data: { - title: 'Components' - }, - children: [ - { - path: 'buttons', - component: ButtonsComponent, - data: { - title: 'Buttons' - } - }, - { - path: 'cards', - component: CardsComponent, - data: { - title: 'Cards' - } - }, - { - path: 'forms', - component: FormsComponent, - data: { - title: 'Forms' - } - }, - { - path: 'modals', - component: ModalsComponent, - data: { - title: 'Modals' - } - }, - { - path: 'social-buttons', - component: SocialButtonsComponent, - data: { - title: 'Social buttons' - } - }, - { - path: 'switches', - component: SwitchesComponent, - data: { - title: 'Switches' - } - }, - { - path: 'tables', - component: TablesComponent, - data: { - title: 'Tables' - } - }, - { - path: 'tabs', - component: TabsComponent, - data: { - title: 'Tabs' - } - } - ] - } -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule] -}) -export class ComponentsRoutingModule {} diff --git a/Angular4_CLI_Full_Project/src/app/views/components/components.module.ts b/Angular4_CLI_Full_Project/src/app/views/components/components.module.ts deleted file mode 100644 index 30cf24ac5..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/components.module.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { NgModule } from '@angular/core'; - -import { ButtonsComponent } from './buttons.component'; -import { CardsComponent } from './cards.component'; - -// Forms Component -import { FormsComponent } from './forms.component'; -import { BsDropdownModule } from 'ngx-bootstrap/dropdown'; - -import { SocialButtonsComponent } from './social-buttons.component'; -import { SwitchesComponent } from './switches.component'; -import { TablesComponent } from './tables.component'; - -// Modal Component -import { ModalModule } from 'ngx-bootstrap/modal'; -import { ModalsComponent } from './modals.component'; - -// Tabs Component -import { TabsModule } from 'ngx-bootstrap/tabs'; -import { TabsComponent } from './tabs.component'; - -// Components Routing -import { ComponentsRoutingModule } from './components-routing.module'; - -@NgModule({ - imports: [ - ComponentsRoutingModule, - BsDropdownModule.forRoot(), - ModalModule.forRoot(), - TabsModule - ], - declarations: [ - ButtonsComponent, - CardsComponent, - FormsComponent, - ModalsComponent, - SocialButtonsComponent, - SwitchesComponent, - TablesComponent, - TabsComponent - ] -}) -export class ComponentsModule { } diff --git a/Angular4_CLI_Full_Project/src/app/views/components/modals.component.ts b/Angular4_CLI_Full_Project/src/app/views/components/modals.component.ts deleted file mode 100644 index 4315b178d..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/modals.component.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Component, ViewChild } from '@angular/core'; -import { ModalDirective } from 'ngx-bootstrap/modal/modal.component'; - -@Component({ - templateUrl: 'modals.component.html' -}) -export class ModalsComponent { - public myModal; - public largeModal; - public smallModal; - public primaryModal; - public successModal; - public warningModal; - public dangerModal; - public infoModal; -} diff --git a/Angular4_CLI_Full_Project/src/app/views/components/social-buttons.component.html b/Angular4_CLI_Full_Project/src/app/views/components/social-buttons.component.html deleted file mode 100644 index 15c284e50..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/social-buttons.component.html +++ /dev/null @@ -1,788 +0,0 @@ -
    -
    -
    -
    -
    - Social Media Button - Usage ex. - <button class="btn btn-facebook" type="button"><span>Facebook</span></button> -
    - - - -
    -
    -
    -
    Size Small - Add this class - .btn-sm - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    Size Normal
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    Size Large - Add this class - .btn-lg - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    -
    -
    - -
    -
    -
    - Social Media Button - Only icons. Usage ex. - <button class="btn btn-facebook icon" type="button"><span>Facebook</span></button> -
    - - - -
    -
    -
    -
    Size Small - Add this class - .btn-sm - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    Size Normal
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    Size Large - Add this class - .btn-lg - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    -
    -
    - -
    -
    -
    - Social Media Button - Only text. Usage ex. - <button class="btn btn-facebook text" type="button"><span>Facebook</span></button> -
    - - - -
    -
    -
    -
    Size Small - Add this class - .btn-sm - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    Size Normal
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    Size Large - Add this class - .btn-lg - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    -
    -
    - -
    - -
    diff --git a/Angular4_CLI_Full_Project/src/app/views/components/social-buttons.component.ts b/Angular4_CLI_Full_Project/src/app/views/components/social-buttons.component.ts deleted file mode 100644 index 6b79f3f96..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/social-buttons.component.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - templateUrl: 'social-buttons.component.html' -}) -export class SocialButtonsComponent { - - constructor() { } - -} diff --git a/Angular4_CLI_Full_Project/src/app/views/components/switches.component.html b/Angular4_CLI_Full_Project/src/app/views/components/switches.component.html deleted file mode 100644 index afb16d1e6..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/components/switches.component.html +++ /dev/null @@ -1,942 +0,0 @@ -
    -
    -
    -
    -
    - 3d Switch -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch default -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch default - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch outline -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch outline - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch outline alternative -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch outline alternative - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with text -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with text - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with text outline -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with text outline - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with text outline alternative -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with text outline alternative - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with icon -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with icon - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with icon outline -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with icon outline - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with icon outline alternative -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Switch with icon outline alternative - pills -
    -
    - -     - -     - -     - -     - -     - -
    -
    -
    - -
    -
    -
    - Sizes -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    SizeExampleCSS Class
    - Large - - - - Add following class - .switch-lg -
    - Normal - - - - - -
    - Small - - - - Add following class - .switch-sm -
    - Extra small - - - - Add following class - .switch-sm -
    -
    -
    -
    - -
    - -
    diff --git a/Angular4_CLI_Full_Project/src/app/views/dashboard/dashboard.component.html b/Angular4_CLI_Full_Project/src/app/views/dashboard/dashboard.component.html deleted file mode 100644 index a63f79869..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/dashboard/dashboard.component.html +++ /dev/null @@ -1,940 +0,0 @@ -
    -
    -
    -
    -
    - -

    9.823

    -

    Members online

    -
    -
    - -
    -
    -
    -
    -
    -
    - -

    9.823

    -

    Members online

    -
    -
    - -
    -
    -
    -
    -
    -
    - -

    9.823

    -

    Members online

    -
    -
    - -
    -
    -
    -
    -
    -
    - -

    9.823

    -

    Members online

    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -

    Traffic

    -
    November 2015
    -
    -
    - - -
    -
    -
    - -
    -
    - -
    - -
    -
    - - -
    -
    - - -
    -
    - - -
    -
    - - -
    -
    -
    -
    -
    -
    - Traffic & Sales -
    -
    -
    -
    -
    -
    -
    - New Clients -
    - 9,123 -
    - -
    -
    -
    -
    -
    - Recuring Clients -
    - 22,643 -
    - -
    -
    -
    -
    -
    -
      -
    • -
      - Monday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • -
      - Tuesday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • -
      - Wednesday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • -
      - Thursday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • -
      - Friday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • -
      - Saturday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • -
      - Sunday -
      -
      -
      -
      -
      -
      -
      -
      -
      -
    • -
    • - New clients   Recurring clients -
    • -
    -
    -
    -
    -
    -
    - Pageviews -
    - 78,623 -
    - -
    -
    -
    -
    -
    - Organic -
    - 49,123 -
    - -
    -
    -
    -
    -
    -
      -
    • - - Male - 43% -
      -
      -
      -
      -
      -
    • -
    • - - Female - 37% -
      -
      -
      -
      -
      -
    • -
    • -
    • - - Organic Search - 191,235 (56%) -
      -
      -
      -
      -
      -
    • -
    • - - Facebook - 51,223 (15%) -
      -
      -
      -
      -
      -
    • -
    • - - Twitter - 37,564 (11%) -
      -
      -
      -
      -
      -
    • -
    • - - LinkedIn - 27,319 (8%) -
      -
      -
      -
      -
      -
    • -
    • - -
    • -
    -
    -
    -
    -
    -
    - CTR -
    - 23% -
    - -
    -
    -
    -
    -
    - Bounce Rate -
    - 5% -
    - -
    -
    -
    -
    -
    -
      -
    • - -
      -
      iMac 4k
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 1.924 -
      -
      - -
      -
    • -
    • - -
      -
      Samsung Galaxy Edge
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 1.224 -
      -
      - -
      -
    • -
    • - -
      -
      iPhone 6S
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 1.163 -
      -
      - -
      -
    • -
    • - -
      -
      Premium accounts
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 928 -
      -
      - -
      -
    • -
    • - -
      -
      Spotify Subscriptions
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 893 -
      -
      - -
      -
    • -
    • - -
      -
      Ebook
      - Lorem ipsum dolor sit amet -
      -
      -
      Downloads
      - 121.924 -
      -
      - -
      -
    • -
    • - -
      -
      Photos
      - Lorem ipsum dolor sit amet -
      -
      -
      Uploaded
      - 12.125 -
      -
      - -
      -
    • -
    • - -
    • -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    UserCountryUsagePayment MethodActivity
    -
    - admin@bootstrapmaster.com - -
    -
    -
    Yiorgos Avraamu
    -
    - New | Registered: Jan 1, 2015 -
    -
    - USA - -
    -
    - 50% -
    -
    - Jun 11, 2015 - Jul 10, 2015 -
    -
    -
    -
    -
    -
    - - -
    Last login
    - 10 sec ago -
    -
    - admin@bootstrapmaster.com - -
    -
    -
    Avram Tarasios
    -
    - - Recurring | Registered: Jan 1, 2015 -
    -
    - Brazil - -
    -
    - 10% -
    -
    - Jun 11, 2015 - Jul 10, 2015 -
    -
    -
    -
    -
    -
    - - -
    Last login
    - 5 minutes ago -
    -
    - admin@bootstrapmaster.com - -
    -
    -
    Quintin Ed
    -
    - New | Registered: Jan 1, 2015 -
    -
    - India - -
    -
    - 74% -
    -
    - Jun 11, 2015 - Jul 10, 2015 -
    -
    -
    -
    -
    -
    - - -
    Last login
    - 1 hour ago -
    -
    - admin@bootstrapmaster.com - -
    -
    -
    Enéas Kwadwo
    -
    - New | Registered: Jan 1, 2015 -
    -
    - France - -
    -
    - 98% -
    -
    - Jun 11, 2015 - Jul 10, 2015 -
    -
    -
    -
    -
    -
    - - -
    Last login
    - Last month -
    -
    - admin@bootstrapmaster.com - -
    -
    -
    Agapetus Tadeáš
    -
    - New | Registered: Jan 1, 2015 -
    -
    - Spain - -
    -
    - 22% -
    -
    - Jun 11, 2015 - Jul 10, 2015 -
    -
    -
    -
    -
    -
    - - -
    Last login
    - Last week -
    -
    - admin@bootstrapmaster.com - -
    -
    -
    Friderik Dávid
    -
    - New | Registered: Jan 1, 2015 -
    -
    - Poland - -
    -
    - 43% -
    -
    - Jun 11, 2015 - Jul 10, 2015 -
    -
    -
    -
    -
    -
    - - -
    Last login
    - Yesterday -
    -
    -
    -
    -
    -
    diff --git a/Angular4_CLI_Full_Project/src/app/views/pages/login.component.html b/Angular4_CLI_Full_Project/src/app/views/pages/login.component.html deleted file mode 100644 index 9cba83ffc..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/pages/login.component.html +++ /dev/null @@ -1,41 +0,0 @@ -
    -
    -
    -
    -
    -
    -
    -

    Login

    -

    Sign In to your account

    -
    - - -
    -
    - - -
    -
    -
    - -
    -
    - -
    -
    -
    -
    -
    -
    -
    -

    Sign up

    -

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    - -
    -
    -
    -
    -
    -
    -
    -
    diff --git a/Angular4_CLI_Full_Project/src/app/views/pages/pages-routing.module.ts b/Angular4_CLI_Full_Project/src/app/views/pages/pages-routing.module.ts deleted file mode 100644 index eab88caf5..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/pages/pages-routing.module.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -import { P404Component } from './404.component'; -import { P500Component } from './500.component'; -import { LoginComponent } from './login.component'; -import { RegisterComponent } from './register.component'; - -const routes: Routes = [ - { - path: '', - data: { - title: 'Example Pages' - }, - children: [ - { - path: '404', - component: P404Component, - data: { - title: 'Page 404' - } - }, - { - path: '500', - component: P500Component, - data: { - title: 'Page 500' - } - }, - { - path: 'login', - component: LoginComponent, - data: { - title: 'Login Page' - } - }, - { - path: 'register', - component: RegisterComponent, - data: { - title: 'Register Page' - } - } - ] - } -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule] -}) -export class PagesRoutingModule {} diff --git a/Angular4_CLI_Full_Project/src/app/views/pages/pages.module.ts b/Angular4_CLI_Full_Project/src/app/views/pages/pages.module.ts deleted file mode 100644 index 9c79c6ac4..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/pages/pages.module.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { NgModule } from '@angular/core'; - -import { P404Component } from './404.component'; -import { P500Component } from './500.component'; -import { LoginComponent } from './login.component'; -import { RegisterComponent } from './register.component'; - -import { PagesRoutingModule } from './pages-routing.module'; - -@NgModule({ - imports: [ PagesRoutingModule ], - declarations: [ - P404Component, - P500Component, - LoginComponent, - RegisterComponent - ] -}) -export class PagesModule { } diff --git a/Angular4_CLI_Full_Project/src/app/views/pages/register.component.html b/Angular4_CLI_Full_Project/src/app/views/pages/register.component.html deleted file mode 100644 index 7ded71df5..000000000 --- a/Angular4_CLI_Full_Project/src/app/views/pages/register.component.html +++ /dev/null @@ -1,45 +0,0 @@ -
    -
    -
    -
    -
    -
    -

    Register

    -

    Create your account

    -
    - - -
    - -
    - @ - -
    - -
    - - -
    - -
    - - -
    - - -
    - -
    -
    -
    -
    -
    diff --git a/Angular4_CLI_Full_Project/src/assets/.npmignore b/Angular4_CLI_Full_Project/src/assets/.npmignore deleted file mode 100644 index e69de29bb..000000000 diff --git a/Angular4_CLI_Full_Project/src/assets/img/favicon.png b/Angular4_CLI_Full_Project/src/assets/img/favicon.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/favicon.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/ASEAN.png b/Angular4_CLI_Full_Project/src/assets/img/flags/ASEAN.png deleted file mode 100755 index 1fb1b9184..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/ASEAN.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Afghanistan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Afghanistan.png deleted file mode 100755 index 2575b8a92..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Afghanistan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/African Union.png b/Angular4_CLI_Full_Project/src/assets/img/flags/African Union.png deleted file mode 100755 index 85b268ef4..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/African Union.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Albania.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Albania.png deleted file mode 100755 index 2e16c3b68..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Albania.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Algeria.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Algeria.png deleted file mode 100755 index 69477f04b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Algeria.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/American Samoa.png b/Angular4_CLI_Full_Project/src/assets/img/flags/American Samoa.png deleted file mode 100755 index b0d4cdc67..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/American Samoa.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Andorra.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Andorra.png deleted file mode 100755 index e753cd652..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Andorra.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Angola.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Angola.png deleted file mode 100755 index 97ae9630e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Angola.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Anguilla.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Anguilla.png deleted file mode 100755 index 7a6ac041f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Anguilla.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Antarctica.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Antarctica.png deleted file mode 100755 index a97b3552d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Antarctica.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Antigua & Barbuda.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Antigua & Barbuda.png deleted file mode 100755 index cfc157a57..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Antigua & Barbuda.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Arab League.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Arab League.png deleted file mode 100755 index 646a3f724..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Arab League.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Argentina.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Argentina.png deleted file mode 100755 index 62d15185b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Argentina.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Armenia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Armenia.png deleted file mode 100755 index f4f9baeae..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Armenia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Aruba.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Aruba.png deleted file mode 100755 index 0083ef62d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Aruba.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Australia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Australia.png deleted file mode 100755 index 893740458..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Australia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Austria.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Austria.png deleted file mode 100755 index fe66fef45..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Austria.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Azerbaijan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Azerbaijan.png deleted file mode 100755 index 1850abc9e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Azerbaijan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bahamas.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bahamas.png deleted file mode 100755 index 753fc830e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bahamas.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bahrain.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bahrain.png deleted file mode 100755 index c45c7b482..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bahrain.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bangladesh.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bangladesh.png deleted file mode 100755 index 8ef2443cb..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bangladesh.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Barbados.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Barbados.png deleted file mode 100755 index d440d410e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Barbados.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Belarus.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Belarus.png deleted file mode 100755 index ce75c73c7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Belarus.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Belgium.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Belgium.png deleted file mode 100755 index 1d3df4c5e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Belgium.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Belize.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Belize.png deleted file mode 100755 index 4a9aea027..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Belize.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Benin.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Benin.png deleted file mode 100755 index af460631b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Benin.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bermuda.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bermuda.png deleted file mode 100755 index 880d96531..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bermuda.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bhutan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bhutan.png deleted file mode 100755 index db0372ed3..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bhutan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bolivia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bolivia.png deleted file mode 100755 index a28f06094..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bolivia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bosnia & Herzegovina.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bosnia & Herzegovina.png deleted file mode 100755 index 806d05d2c..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bosnia & Herzegovina.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Botswana.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Botswana.png deleted file mode 100755 index 9a06843f2..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Botswana.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Brazil.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Brazil.png deleted file mode 100755 index 47a007f2d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Brazil.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Brunei.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Brunei.png deleted file mode 100755 index 650cca6d8..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Brunei.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Bulgaria.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Bulgaria.png deleted file mode 100755 index c13019287..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Bulgaria.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Burkina Faso.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Burkina Faso.png deleted file mode 100755 index 13ff13262..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Burkina Faso.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Burundi.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Burundi.png deleted file mode 100755 index 15e76aa27..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Burundi.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/CARICOM.png b/Angular4_CLI_Full_Project/src/assets/img/flags/CARICOM.png deleted file mode 100755 index 19dfeae34..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/CARICOM.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/CIS.png b/Angular4_CLI_Full_Project/src/assets/img/flags/CIS.png deleted file mode 100755 index 809c0261a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/CIS.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cambodja.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cambodja.png deleted file mode 100755 index 65b4c06e3..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cambodja.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cameroon.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cameroon.png deleted file mode 100755 index 32eccee5e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cameroon.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Canada.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Canada.png deleted file mode 100755 index bfff41403..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Canada.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cape Verde.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cape Verde.png deleted file mode 100755 index 103043c26..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cape Verde.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cayman Islands.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cayman Islands.png deleted file mode 100755 index f2a6b6c21..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cayman Islands.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Central African Republic.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Central African Republic.png deleted file mode 100755 index 3f0b50179..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Central African Republic.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Chad.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Chad.png deleted file mode 100755 index c74a4a4a6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Chad.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Chile.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Chile.png deleted file mode 100755 index 3e764627a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Chile.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/China.png b/Angular4_CLI_Full_Project/src/assets/img/flags/China.png deleted file mode 100755 index d0da5509b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/China.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Colombia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Colombia.png deleted file mode 100755 index da19e539e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Colombia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Commonwealth.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Commonwealth.png deleted file mode 100755 index aa0d8abb0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Commonwealth.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Comoros.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Comoros.png deleted file mode 100755 index 051fc5ad1..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Comoros.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Congo-Brazzaville.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Congo-Brazzaville.png deleted file mode 100755 index f8c0b25e9..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Congo-Brazzaville.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Congo-Kinshasa(Zaire).png b/Angular4_CLI_Full_Project/src/assets/img/flags/Congo-Kinshasa(Zaire).png deleted file mode 100755 index be42ea091..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Congo-Kinshasa(Zaire).png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cook Islands.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cook Islands.png deleted file mode 100755 index 7c432c890..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cook Islands.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Costa Rica.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Costa Rica.png deleted file mode 100755 index 44a30739b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Costa Rica.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cote d'Ivoire.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cote d'Ivoire.png deleted file mode 100755 index 1fee82cae..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cote d'Ivoire.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Croatia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Croatia.png deleted file mode 100755 index 4cb4ea74c..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Croatia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cuba.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cuba.png deleted file mode 100755 index 4e3cf2993..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cuba.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Cyprus.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Cyprus.png deleted file mode 100755 index df22c0335..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Cyprus.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Czech Republic.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Czech Republic.png deleted file mode 100755 index 31f9ad9b1..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Czech Republic.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Denmark.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Denmark.png deleted file mode 100755 index 3f4dac36d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Denmark.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Djibouti.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Djibouti.png deleted file mode 100755 index 8f32f7483..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Djibouti.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Dominica.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Dominica.png deleted file mode 100755 index e70b1a452..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Dominica.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Dominican Republic.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Dominican Republic.png deleted file mode 100755 index ca2d40acc..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Dominican Republic.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Ecuador.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Ecuador.png deleted file mode 100755 index 4913cec5a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Ecuador.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Egypt.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Egypt.png deleted file mode 100755 index ee9fef081..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Egypt.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/El Salvador.png b/Angular4_CLI_Full_Project/src/assets/img/flags/El Salvador.png deleted file mode 100755 index adf8750b1..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/El Salvador.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/England.png b/Angular4_CLI_Full_Project/src/assets/img/flags/England.png deleted file mode 100755 index 22fb06b5a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/England.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Equatorial Guinea.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Equatorial Guinea.png deleted file mode 100755 index 13d3c92db..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Equatorial Guinea.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Eritrea.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Eritrea.png deleted file mode 100755 index 5f38c52a0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Eritrea.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Estonia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Estonia.png deleted file mode 100755 index 3eadb299b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Estonia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Ethiopia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Ethiopia.png deleted file mode 100755 index b29191fcd..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Ethiopia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/European Union.png b/Angular4_CLI_Full_Project/src/assets/img/flags/European Union.png deleted file mode 100755 index 18c86daf8..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/European Union.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Faroes.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Faroes.png deleted file mode 100755 index 1bfb68e86..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Faroes.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Fiji.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Fiji.png deleted file mode 100755 index d96b232e0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Fiji.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Finland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Finland.png deleted file mode 100755 index 97d47a9fe..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Finland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/France.png b/Angular4_CLI_Full_Project/src/assets/img/flags/France.png deleted file mode 100755 index 12318d45d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/France.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Gabon.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Gabon.png deleted file mode 100755 index bb1f634c7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Gabon.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Gambia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Gambia.png deleted file mode 100755 index e4bee6cea..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Gambia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Georgia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Georgia.png deleted file mode 100755 index fb293a0b7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Georgia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Germany.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Germany.png deleted file mode 100755 index 77e9338ba..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Germany.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Ghana.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Ghana.png deleted file mode 100755 index 16ddfb4f6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Ghana.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Gibraltar.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Gibraltar.png deleted file mode 100755 index 3d3b66dcb..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Gibraltar.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Greece.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Greece.png deleted file mode 100755 index b00fd5a7e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Greece.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Greenland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Greenland.png deleted file mode 100755 index 8dc87f4de..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Greenland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Grenada.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Grenada.png deleted file mode 100755 index 26be61eed..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Grenada.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guadeloupe.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guadeloupe.png deleted file mode 100755 index 53dca174f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guadeloupe.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guam.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guam.png deleted file mode 100755 index f1d6b7a48..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guam.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guatemala.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guatemala.png deleted file mode 100755 index e5580e93d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guatemala.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guernsey.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guernsey.png deleted file mode 100755 index 0514cc9e4..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guernsey.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guinea-Bissau.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guinea-Bissau.png deleted file mode 100755 index d097a2897..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guinea-Bissau.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guinea.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guinea.png deleted file mode 100755 index f71c621ff..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guinea.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Guyana.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Guyana.png deleted file mode 100755 index 76eabd9ca..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Guyana.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Haiti.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Haiti.png deleted file mode 100755 index 325cef0cc..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Haiti.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Honduras.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Honduras.png deleted file mode 100755 index 1f327f1b5..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Honduras.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Hong Kong.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Hong Kong.png deleted file mode 100755 index 46208e0d5..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Hong Kong.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Hungary.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Hungary.png deleted file mode 100755 index af757c6c6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Hungary.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Iceland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Iceland.png deleted file mode 100755 index 33d68ddfb..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Iceland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/India.png b/Angular4_CLI_Full_Project/src/assets/img/flags/India.png deleted file mode 100755 index e0a8865f0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/India.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Indonezia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Indonezia.png deleted file mode 100755 index ed42d1f98..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Indonezia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Iran.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Iran.png deleted file mode 100755 index 70da4fcd2..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Iran.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Iraq.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Iraq.png deleted file mode 100755 index cdd0c4fef..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Iraq.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Ireland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Ireland.png deleted file mode 100755 index 74219ab83..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Ireland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Islamic Conference.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Islamic Conference.png deleted file mode 100755 index cc4aa3b36..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Islamic Conference.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Isle of Man.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Isle of Man.png deleted file mode 100755 index 9478023cc..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Isle of Man.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Israel.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Israel.png deleted file mode 100755 index 3ba7553d3..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Israel.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Italy.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Italy.png deleted file mode 100755 index c31017efa..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Italy.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Jamaica.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Jamaica.png deleted file mode 100755 index e79cf2a89..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Jamaica.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Japan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Japan.png deleted file mode 100755 index 29c45d586..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Japan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Jersey.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Jersey.png deleted file mode 100755 index b8f5ba6c7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Jersey.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Jordan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Jordan.png deleted file mode 100755 index b627a5c9f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Jordan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Kazakhstan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Kazakhstan.png deleted file mode 100755 index 8980ad96e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Kazakhstan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Kenya.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Kenya.png deleted file mode 100755 index e3d7f12d7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Kenya.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Kiribati.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Kiribati.png deleted file mode 100755 index 5d286d257..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Kiribati.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Kosovo.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Kosovo.png deleted file mode 100755 index 1d4628640..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Kosovo.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Kuwait.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Kuwait.png deleted file mode 100755 index 8d7adb1a6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Kuwait.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Kyrgyzstan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Kyrgyzstan.png deleted file mode 100755 index cf2d885fe..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Kyrgyzstan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Laos.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Laos.png deleted file mode 100755 index f3b23092a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Laos.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Latvia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Latvia.png deleted file mode 100755 index 6ace36d12..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Latvia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Lebanon.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Lebanon.png deleted file mode 100755 index 854717e9a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Lebanon.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Lesotho.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Lesotho.png deleted file mode 100755 index 9af5c4a17..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Lesotho.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Liberia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Liberia.png deleted file mode 100755 index cadfec1df..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Liberia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Libya.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Libya.png deleted file mode 100755 index 8176ad522..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Libya.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Liechtenshein.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Liechtenshein.png deleted file mode 100755 index 4661f3dd6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Liechtenshein.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Lithuania.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Lithuania.png deleted file mode 100755 index 875dd3f90..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Lithuania.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Luxembourg.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Luxembourg.png deleted file mode 100755 index cef746a46..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Luxembourg.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Macao.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Macao.png deleted file mode 100755 index e413fa5ad..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Macao.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Macedonia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Macedonia.png deleted file mode 100755 index 0bc91513d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Macedonia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Madagascar.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Madagascar.png deleted file mode 100755 index 31e6d84ce..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Madagascar.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Malawi.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Malawi.png deleted file mode 100755 index b96d0ad28..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Malawi.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Malaysia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Malaysia.png deleted file mode 100755 index 92686c29e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Malaysia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Maldives.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Maldives.png deleted file mode 100755 index 92472ec8d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Maldives.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Mali.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Mali.png deleted file mode 100755 index 189bff7f8..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Mali.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Malta.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Malta.png deleted file mode 100755 index a93f9eefc..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Malta.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Marshall Islands.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Marshall Islands.png deleted file mode 100755 index 1d158692f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Marshall Islands.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Martinique.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Martinique.png deleted file mode 100755 index f2b7be412..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Martinique.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Mauritania.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Mauritania.png deleted file mode 100755 index fcf1b44bc..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Mauritania.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Mauritius.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Mauritius.png deleted file mode 100755 index e4c0b7d8a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Mauritius.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Mexico.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Mexico.png deleted file mode 100755 index f0557d0d2..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Mexico.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Micronesia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Micronesia.png deleted file mode 100755 index 02cf42457..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Micronesia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Moldova.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Moldova.png deleted file mode 100755 index 344855ae4..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Moldova.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Monaco.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Monaco.png deleted file mode 100755 index bda53b1d4..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Monaco.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Mongolia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Mongolia.png deleted file mode 100755 index 83b75425d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Mongolia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Montenegro.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Montenegro.png deleted file mode 100755 index 514291844..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Montenegro.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Montserrat.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Montserrat.png deleted file mode 100755 index a799545d7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Montserrat.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Morocco.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Morocco.png deleted file mode 100755 index c1bb97073..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Morocco.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Mozambique.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Mozambique.png deleted file mode 100755 index 07c0a8a94..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Mozambique.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Myanmar(Burma).png b/Angular4_CLI_Full_Project/src/assets/img/flags/Myanmar(Burma).png deleted file mode 100755 index 2deafe189..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Myanmar(Burma).png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/NATO.png b/Angular4_CLI_Full_Project/src/assets/img/flags/NATO.png deleted file mode 100755 index d651f063a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/NATO.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Namibia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Namibia.png deleted file mode 100755 index 9d14ed358..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Namibia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Nauru.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Nauru.png deleted file mode 100755 index f763397ce..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Nauru.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Nepal.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Nepal.png deleted file mode 100755 index f011adc43..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Nepal.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Netherlands Antilles.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Netherlands Antilles.png deleted file mode 100755 index e4f171fd0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Netherlands Antilles.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Netherlands.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Netherlands.png deleted file mode 100755 index d5ea76870..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Netherlands.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/New Caledonia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/New Caledonia.png deleted file mode 100755 index dc3e9e100..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/New Caledonia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/New Zealand.png b/Angular4_CLI_Full_Project/src/assets/img/flags/New Zealand.png deleted file mode 100755 index ef474ad14..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/New Zealand.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Nicaragua.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Nicaragua.png deleted file mode 100755 index ad8ab4403..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Nicaragua.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Niger.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Niger.png deleted file mode 100755 index 06a7c0892..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Niger.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Nigeria.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Nigeria.png deleted file mode 100755 index 899e0be6b..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Nigeria.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/North Korea.png b/Angular4_CLI_Full_Project/src/assets/img/flags/North Korea.png deleted file mode 100755 index f51a2bf8f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/North Korea.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Northern Cyprus.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Northern Cyprus.png deleted file mode 100755 index cb346570d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Northern Cyprus.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Northern Ireland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Northern Ireland.png deleted file mode 100755 index c0eafdf3c..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Northern Ireland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Norway.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Norway.png deleted file mode 100755 index 2b03236fc..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Norway.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/OPEC.png b/Angular4_CLI_Full_Project/src/assets/img/flags/OPEC.png deleted file mode 100755 index 5d9c242c6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/OPEC.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Olimpic Movement.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Olimpic Movement.png deleted file mode 100755 index 71d97aefb..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Olimpic Movement.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Oman.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Oman.png deleted file mode 100755 index 111b1149a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Oman.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Pakistan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Pakistan.png deleted file mode 100755 index 1630f5519..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Pakistan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Palau.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Palau.png deleted file mode 100755 index 21a45c4c4..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Palau.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Palestine.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Palestine.png deleted file mode 100755 index 6f654e311..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Palestine.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Panama.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Panama.png deleted file mode 100755 index e39849d7f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Panama.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Papua New Guinea.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Papua New Guinea.png deleted file mode 100755 index 7b0d0eec4..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Papua New Guinea.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Paraguay.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Paraguay.png deleted file mode 100755 index d8cc505ac..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Paraguay.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Peru.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Peru.png deleted file mode 100755 index f971a354e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Peru.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Philippines.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Philippines.png deleted file mode 100755 index d025d4d58..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Philippines.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Poland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Poland.png deleted file mode 100755 index 7a7180464..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Poland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Portugal.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Portugal.png deleted file mode 100755 index 5b3907313..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Portugal.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Puerto Rico.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Puerto Rico.png deleted file mode 100755 index 146ca81ee..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Puerto Rico.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Qatar.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Qatar.png deleted file mode 100755 index 1dd118308..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Qatar.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Red Cross.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Red Cross.png deleted file mode 100755 index fd7996724..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Red Cross.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Reunion.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Reunion.png deleted file mode 100755 index 8087909f2..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Reunion.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Romania.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Romania.png deleted file mode 100755 index b8cdad8bf..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Romania.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Russia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Russia.png deleted file mode 100755 index a5b952854..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Russia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Rwanda.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Rwanda.png deleted file mode 100755 index f6f516354..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Rwanda.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Saint Lucia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Saint Lucia.png deleted file mode 100755 index 987e1f0fa..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Saint Lucia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Samoa.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Samoa.png deleted file mode 100755 index e671ebb63..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Samoa.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/San Marino.png b/Angular4_CLI_Full_Project/src/assets/img/flags/San Marino.png deleted file mode 100755 index 92bd72b6f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/San Marino.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Sao Tome & Principe.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Sao Tome & Principe.png deleted file mode 100755 index b5187c6a6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Sao Tome & Principe.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Saudi Arabia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Saudi Arabia.png deleted file mode 100755 index 9630e83d5..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Saudi Arabia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Scotland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Scotland.png deleted file mode 100755 index 4ac5281d7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Scotland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Senegal.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Senegal.png deleted file mode 100755 index 13c936532..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Senegal.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Serbia(Yugoslavia).png b/Angular4_CLI_Full_Project/src/assets/img/flags/Serbia(Yugoslavia).png deleted file mode 100755 index b2afcf5d2..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Serbia(Yugoslavia).png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Seychelles.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Seychelles.png deleted file mode 100755 index de605e600..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Seychelles.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Sierra Leone.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Sierra Leone.png deleted file mode 100755 index 47b26eb5d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Sierra Leone.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Singapore.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Singapore.png deleted file mode 100755 index 4b887853c..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Singapore.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Slovakia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Slovakia.png deleted file mode 100755 index 418c7869a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Slovakia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Slovenia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Slovenia.png deleted file mode 100755 index cfa83b547..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Slovenia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Solomon Islands.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Solomon Islands.png deleted file mode 100755 index f1ffebb30..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Solomon Islands.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Somalia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Somalia.png deleted file mode 100755 index 6a02c72c7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Somalia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Somaliland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Somaliland.png deleted file mode 100755 index d44f58092..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Somaliland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/South Africa.png b/Angular4_CLI_Full_Project/src/assets/img/flags/South Africa.png deleted file mode 100755 index d1920decd..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/South Africa.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/South Korea.png b/Angular4_CLI_Full_Project/src/assets/img/flags/South Korea.png deleted file mode 100755 index 13e27e11d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/South Korea.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Spain.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Spain.png deleted file mode 100755 index 38b66bc4a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Spain.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Sri Lanka.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Sri Lanka.png deleted file mode 100755 index 2a7d92597..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Sri Lanka.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/St Kitts & Nevis.png b/Angular4_CLI_Full_Project/src/assets/img/flags/St Kitts & Nevis.png deleted file mode 100755 index 75f3ed291..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/St Kitts & Nevis.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/St Vincent & the Grenadines.png b/Angular4_CLI_Full_Project/src/assets/img/flags/St Vincent & the Grenadines.png deleted file mode 100755 index e63336016..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/St Vincent & the Grenadines.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Sudan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Sudan.png deleted file mode 100755 index 3a3798521..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Sudan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Suriname.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Suriname.png deleted file mode 100755 index cb4a87ac2..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Suriname.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Swaziland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Swaziland.png deleted file mode 100755 index 3585ac097..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Swaziland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Sweden.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Sweden.png deleted file mode 100755 index 2c9bd9dbf..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Sweden.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Switzerland.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Switzerland.png deleted file mode 100755 index 223154d7e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Switzerland.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Syria.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Syria.png deleted file mode 100755 index 0584c20db..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Syria.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Tahiti(French Polinesia).png b/Angular4_CLI_Full_Project/src/assets/img/flags/Tahiti(French Polinesia).png deleted file mode 100755 index cbc56d0a5..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Tahiti(French Polinesia).png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Taiwan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Taiwan.png deleted file mode 100755 index 956d85343..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Taiwan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Tajikistan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Tajikistan.png deleted file mode 100755 index 09a79072e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Tajikistan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Tanzania.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Tanzania.png deleted file mode 100755 index f0e1f3957..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Tanzania.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Thailand.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Thailand.png deleted file mode 100755 index 8f3b5e718..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Thailand.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Timor-Leste.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Timor-Leste.png deleted file mode 100755 index 296fba0d3..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Timor-Leste.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Togo.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Togo.png deleted file mode 100755 index 5a100b15d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Togo.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Tonga.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Tonga.png deleted file mode 100755 index f62ba374a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Tonga.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Trinidad & Tobago.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Trinidad & Tobago.png deleted file mode 100755 index cf8566036..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Trinidad & Tobago.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Tunisia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Tunisia.png deleted file mode 100755 index d867a5ef6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Tunisia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Turkey.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Turkey.png deleted file mode 100755 index 0398e54dd..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Turkey.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Turkmenistan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Turkmenistan.png deleted file mode 100755 index e3c50edd6..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Turkmenistan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Turks and Caicos Islands.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Turks and Caicos Islands.png deleted file mode 100755 index fc66ef017..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Turks and Caicos Islands.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Tuvalu.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Tuvalu.png deleted file mode 100755 index 3a403a619..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Tuvalu.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/USA.png b/Angular4_CLI_Full_Project/src/assets/img/flags/USA.png deleted file mode 100755 index 48c448fc9..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/USA.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Uganda.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Uganda.png deleted file mode 100755 index 744d39d9a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Uganda.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Ukraine.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Ukraine.png deleted file mode 100755 index 78e4945cf..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Ukraine.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/United Arab Emirates.png b/Angular4_CLI_Full_Project/src/assets/img/flags/United Arab Emirates.png deleted file mode 100755 index 11613758f..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/United Arab Emirates.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/United Nations.png b/Angular4_CLI_Full_Project/src/assets/img/flags/United Nations.png deleted file mode 100755 index 6b5f6397a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/United Nations.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/United-Kingdom.png b/Angular4_CLI_Full_Project/src/assets/img/flags/United-Kingdom.png deleted file mode 100755 index 3853f5e19..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/United-Kingdom.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Uruguay.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Uruguay.png deleted file mode 100755 index 0eddedc9c..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Uruguay.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Uzbekistan.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Uzbekistan.png deleted file mode 100755 index 97ade3f2c..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Uzbekistan.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Vanutau.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Vanutau.png deleted file mode 100755 index ff6cbeff8..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Vanutau.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Vatican City.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Vatican City.png deleted file mode 100755 index c344e8b6a..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Vatican City.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Venezuela.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Venezuela.png deleted file mode 100755 index 8ba69c4f9..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Venezuela.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Viet Nam.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Viet Nam.png deleted file mode 100755 index c9368df09..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Viet Nam.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Virgin Islands British.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Virgin Islands British.png deleted file mode 100755 index eb22e44f5..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Virgin Islands British.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Virgin Islands US.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Virgin Islands US.png deleted file mode 100755 index 13be8077d..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Virgin Islands US.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Wales.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Wales.png deleted file mode 100755 index 3c493454e..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Wales.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Western Sahara.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Western Sahara.png deleted file mode 100755 index 5eb501c87..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Western Sahara.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Yemen.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Yemen.png deleted file mode 100755 index 987a212db..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Yemen.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Zambia.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Zambia.png deleted file mode 100755 index 639c3ace7..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Zambia.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/flags/Zimbabwe.png b/Angular4_CLI_Full_Project/src/assets/img/flags/Zimbabwe.png deleted file mode 100755 index 39106df61..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/flags/Zimbabwe.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/logo-symbol.png b/Angular4_CLI_Full_Project/src/assets/img/logo-symbol.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/logo-symbol.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/assets/img/logo.png b/Angular4_CLI_Full_Project/src/assets/img/logo.png deleted file mode 100644 index 98a194634..000000000 Binary files a/Angular4_CLI_Full_Project/src/assets/img/logo.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/environments/environment.ts b/Angular4_CLI_Full_Project/src/environments/environment.ts deleted file mode 100644 index 00313f166..000000000 --- a/Angular4_CLI_Full_Project/src/environments/environment.ts +++ /dev/null @@ -1,8 +0,0 @@ -// The file contents for the current environment will overwrite these during build. -// The build system defaults to the dev environment which uses `environment.ts`, but if you do -// `ng build --env=prod` then `environment.prod.ts` will be used instead. -// The list of which env maps to which file can be found in `angular-cli.json`. - -export const environment = { - production: false -}; diff --git a/Angular4_CLI_Full_Project/src/favicon.ico b/Angular4_CLI_Full_Project/src/favicon.ico deleted file mode 100644 index 8081c7cea..000000000 Binary files a/Angular4_CLI_Full_Project/src/favicon.ico and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/img/favicon.png b/Angular4_CLI_Full_Project/src/img/favicon.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Full_Project/src/img/favicon.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/img/logo-symbol.png b/Angular4_CLI_Full_Project/src/img/logo-symbol.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Full_Project/src/img/logo-symbol.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/img/logo.png b/Angular4_CLI_Full_Project/src/img/logo.png deleted file mode 100644 index 98a194634..000000000 Binary files a/Angular4_CLI_Full_Project/src/img/logo.png and /dev/null differ diff --git a/Angular4_CLI_Full_Project/src/index.html b/Angular4_CLI_Full_Project/src/index.html deleted file mode 100644 index ca5f3c9f8..000000000 --- a/Angular4_CLI_Full_Project/src/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - CoreUI - Open Source Bootstrap Admin Template - - - - - - - - - - - - diff --git a/Angular4_CLI_Full_Project/src/polyfills.ts b/Angular4_CLI_Full_Project/src/polyfills.ts deleted file mode 100644 index 41d3b9645..000000000 --- a/Angular4_CLI_Full_Project/src/polyfills.ts +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This file includes polyfills needed by Angular and is loaded before the app. - * You can add your own extra polyfills to this file. - * - * This file is divided into 2 sections: - * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. - * 2. Application imports. Files imported after ZoneJS that should be loaded before your main - * file. - * - * The current setup is for so-called "evergreen" browsers; the last versions of browsers that - * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), - * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. - * - * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html - */ - -/*************************************************************************************************** - * BROWSER POLYFILLS - */ - -/** IE9, IE10 and IE11 requires all of the following polyfills. **/ -import 'core-js/es6/symbol'; -import 'core-js/es6/object'; -import 'core-js/es6/function'; -import 'core-js/es6/parse-int'; -import 'core-js/es6/parse-float'; -import 'core-js/es6/number'; -import 'core-js/es6/math'; -import 'core-js/es6/string'; -import 'core-js/es6/date'; -import 'core-js/es6/array'; -import 'core-js/es6/regexp'; -import 'core-js/es6/map'; -import 'core-js/es6/set'; -import 'core-js/es6/reflect'; - -/** IE10 and IE11 requires the following for NgClass support on SVG elements */ -// import 'classlist.js'; // Run `npm install --save classlist.js`. - -/** IE10 and IE11 requires the following to support `@angular/animation`. */ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - - -/** Evergreen browsers require these. **/ -import 'core-js/es6/reflect'; -import 'core-js/es7/reflect'; - - -/** ALL Firefox browsers require the following to support `@angular/animation`. **/ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - - - -/*************************************************************************************************** - * Zone JS is required by Angular itself. - */ -import 'zone.js/dist/zone'; // Included with Angular CLI. - - - -/*************************************************************************************************** - * APPLICATION IMPORTS - */ - -/** - * Date, currency, decimal and percent pipes. - * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 - */ -// import 'intl'; // Run `npm install --save intl`. diff --git a/Angular4_CLI_Full_Project/src/scss/_bootstrap-variables.scss b/Angular4_CLI_Full_Project/src/scss/_bootstrap-variables.scss deleted file mode 100644 index 9a9c27210..000000000 --- a/Angular4_CLI_Full_Project/src/scss/_bootstrap-variables.scss +++ /dev/null @@ -1,109 +0,0 @@ -// Bootstrap overrides - -// -// Color system -// - -$white: #fff; -$gray-100: #f0f3f5; -$gray-200: #c2cfd6; -$gray-300: #a4b7c1; -$gray-400: #869fac; -$gray-500: #678898; -$gray-600: #536c79; -$gray-700: #3e515b; -$gray-800: #29363d; -$gray-900: #151b1e; -$black: #000 !default; - -$blue: #20a8d8; -$indigo: #6610f2 !default; -$purple: #6f42c1 !default; -$pink: #e83e8c !default; -$red: #f86c6b; -$orange: #f8cb00; -$yellow: #ffc107 !default; -$green: #4dbd74; -$teal: #20c997 !default; -$cyan: #63c2de; - -$colors: ( - blue: $blue, - indigo: $indigo, - purple: $purple, - pink: $pink, - red: $red, - orange: $orange, - yellow: $yellow, - green: $green, - teal: $teal, - cyan: $cyan, - white: $white, - gray: $gray-600, - gray-dark: $gray-800 -); - -$theme-colors: ( - primary: $blue, - secondary: $gray-300, - success: $green, - info: $cyan, - warning: $yellow, - danger: $red, - light: $gray-100, - dark: $gray-800 -); - -// Options -// -// Quickly modify global styling by enabling or disabling optional features. - -$enable-transitions: true; -$enable-rounded: false; - -// Body -// -// Settings for the `` element. - -$body-bg: #e4e5e6; - -// Typography -// -// Font, line-height, and color for body text, headings, and more. - -$font-size-base: 0.875rem; - -// Breadcrumbs - -$breadcrumb-bg: #fff; -$breadcrumb-margin-bottom: 1.5rem; - -// Cards - -$card-border-color: $gray-200; -$card-cap-bg: $gray-100; - -// Dropdowns - -$dropdown-padding-y: 0; -$dropdown-border-color: $gray-200; -$dropdown-divider-bg: $gray-100; - -// Buttons - -$btn-secondary-border: $gray-300; - -// Progress bars - -$progress-bg: $gray-100; - -// Tables - -$table-bg-accent: $gray-100; -$table-bg-hover: $gray-100; - -// Forms - -$input-group-addon-bg: $gray-100; -$input-border-color: $gray-200; -$input-group-addon-border-color: $gray-200; diff --git a/Angular4_CLI_Full_Project/src/scss/_core-variables.scss b/Angular4_CLI_Full_Project/src/scss/_core-variables.scss deleted file mode 100644 index 906e13ac3..000000000 --- a/Angular4_CLI_Full_Project/src/scss/_core-variables.scss +++ /dev/null @@ -1 +0,0 @@ -// core overrides diff --git a/Angular4_CLI_Full_Project/src/scss/core/_animate.scss b/Angular4_CLI_Full_Project/src/scss/core/_animate.scss deleted file mode 100644 index c0a244bae..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_animate.scss +++ /dev/null @@ -1,27 +0,0 @@ -// scss-lint:disable all -.animated { - animation-duration: 1s; - // animation-fill-mode: both; -} - -.animated.infinite { - animation-iteration-count: infinite; -} - -.animated.hinge { - animation-duration: 2s; -} - -@keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -.fadeIn { - animation-name: fadeIn; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_aside.scss b/Angular4_CLI_Full_Project/src/scss/core/_aside.scss deleted file mode 100644 index fc71e42c6..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_aside.scss +++ /dev/null @@ -1,64 +0,0 @@ -.aside-menu { - z-index: $zindex-sticky - 1; - width: $aside-menu-width; - color: $aside-menu-color; - background: $aside-menu-bg; - @include borders($aside-menu-borders); - - .nav-tabs { - border-color: $border-color; - .nav-link { - padding: $aside-menu-nav-padding-y $aside-menu-nav-padding-x; - color: $body-color; - border-top: 0; - &.active { - color: theme-color("primary"); - border-right-color: $border-color; - border-left-color: $border-color; - } - } - .nav-item:first-child { - .nav-link { - border-left: 0; - } - } - } - - .tab-content { - position: relative; - overflow-x: hidden; - overflow-y: auto; - border: 0; - border-top: 1px solid $border-color; - -ms-overflow-style: -ms-autohiding-scrollbar; - - &::-webkit-scrollbar { - width: 10px; - margin-left: -10px; - -webkit-appearance: none; - } - - // &::-webkit-scrollbar-button { } - - &::-webkit-scrollbar-track { - background-color: lighten($aside-menu-bg, 5%); - border-right: 1px solid darken($aside-menu-bg, 5%); - border-left: 1px solid darken($aside-menu-bg, 5%); - } - - // &::-webkit-scrollbar-track-piece { } - - &::-webkit-scrollbar-thumb { - height: 50px; - background-color: darken($aside-menu-bg, 10%); - background-clip: content-box; - border-color: transparent; - border-style: solid; - border-width: 1px 2px; - } - - .tab-pane { - padding: 0; - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_avatars.scss b/Angular4_CLI_Full_Project/src/scss/core/_avatars.scss deleted file mode 100644 index 623016ef0..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_avatars.scss +++ /dev/null @@ -1,51 +0,0 @@ -.img-avatar { - border-radius: 50em; -} - -.avatar { - $width: 36px; - $status-width: 10px; - @include avatar($width,$status-width); -} - -.avatar.avatar-xs { - $width: 20px; - $status-width: 8px; - @include avatar($width,$status-width); -} - -.avatar.avatar-sm { - $width: 24px; - $status-width: 8px; - @include avatar($width,$status-width); -} - -.avatar.avatar-lg { - $width: 72px; - $status-width: 12px; - @include avatar($width,$status-width); -} - -.avatars-stack { - .avatar.avatar-xs { - margin-right: -10px; - } - - // .avatar.avatar-sm { - // - // } - - .avatar { - margin-right: -15px; - transition: margin-left $layout-transition-speed, margin-right $layout-transition-speed; - - &:hover { - margin-right: 0 !important; - } - } - - // .avatar.avatar-lg { - // - // } - -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_badge.scss b/Angular4_CLI_Full_Project/src/scss/core/_badge.scss deleted file mode 100644 index 310488562..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_badge.scss +++ /dev/null @@ -1,3 +0,0 @@ -.badge-pill { - border-radius: $badge-pill-border-radius; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_breadcrumb-menu.scss b/Angular4_CLI_Full_Project/src/scss/core/_breadcrumb-menu.scss deleted file mode 100644 index dbbe07e0b..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_breadcrumb-menu.scss +++ /dev/null @@ -1,35 +0,0 @@ -.breadcrumb-menu { - margin-left: auto; - - &::before { - display: none; - } - - .btn-group { - vertical-align: top; - } - - .btn { - padding: 0 $input-btn-padding-x; - color: $text-muted; - vertical-align: top; - border: 0; - - &:hover, &.active { - color: $body-color; - background: transparent; - } - } - - .open { - .btn { - color: $body-color; - background: transparent; - } - } - - .dropdown-menu { - min-width: 180px; - line-height: $line-height-base; - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_breadcrumb.scss b/Angular4_CLI_Full_Project/src/scss/core/_breadcrumb.scss deleted file mode 100644 index d8a003dc6..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_breadcrumb.scss +++ /dev/null @@ -1,4 +0,0 @@ -.breadcrumb { - position: relative; - @include borders($breadcrumb-borders); -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_buttons.scss b/Angular4_CLI_Full_Project/src/scss/core/_buttons.scss deleted file mode 100644 index 7ab4953b9..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_buttons.scss +++ /dev/null @@ -1,575 +0,0 @@ -button { - cursor: pointer; -} - -.btn { - .badge { - position: absolute; - top: 2px; - right: 6px; - font-size: 9px; - } -} - -.btn-transparent { - color: #fff; - background-color: transparent; - border-color: transparent; -} - -.btn { - [class^="icon-"], [class*=" icon-"] { - display: inline-block; - margin-top: -2px; - vertical-align: middle; - } -} - -.btn-facebook, -.btn-twitter, -.btn-linkedin, -.btn-flickr, -.btn-tumblr, -.btn-xing, -.btn-github, -.btn-html5, -.btn-openid, -.btn-stack-overflow, -.btn-youtube, -.btn-css3, -.btn-dribbble, -.btn-google-plus, -.btn-instagram, -.btn-pinterest, -.btn-vk, -.btn-yahoo, -.btn-behance, -.btn-dropbox, -.btn-reddit, -.btn-spotify, -.btn-vine, -.btn-foursquare, -.btn-vimeo { - position: relative; - overflow: hidden; - color: #fff !important; - text-align: center; - - &::before { - position: absolute; - top: 0; - left: 0; - display: block; - font-family: "FontAwesome"; - font-style: normal; - font-weight: normal; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - } - - &:hover { - color: #fff; - } - - &.icon { - - span { - display: none; - } - } - - &.text { - &::before { - display: none; - } - - span { - margin-left: 0 !important; - } - } - @include button-social-size($input-btn-padding-y, $input-btn-padding-x, $font-size-base, $line-height-base, $btn-border-radius); - - &.btn-lg { - @include button-social-size($input-btn-padding-y-lg, $input-btn-padding-x-lg, $font-size-lg, $line-height-lg, $btn-border-radius-lg); - } - - &.btn-sm { - @include button-social-size($input-btn-padding-y-sm, $input-btn-padding-x-sm, $font-size-sm, $line-height-sm, $btn-border-radius-sm); - } - -} - -.btn-facebook { - $color: $facebook; - - background: $color; - &::before { - content: "\f09a"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-twitter { - $color: $twitter; - - background: $color; - &::before { - content: "\f099"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-linkedin { - $color: $linkedin; - - background: $color; - &::before { - content: "\f0e1"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-flickr { - $color: $flickr; - - background: $color; - &::before { - content: "\f16e"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-tumblr { - $color: $tumblr; - - background: $color; - &::before { - content: "\f173"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-xing { - $color: $xing; - - background: $color; - &::before { - content: "\f168"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-github { - $color: $github; - - background: $color; - &::before { - content: "\f09b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-html5 { - $color: $html5; - - background: $color; - &::before { - content: "\f13b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-openid { - $color: $openid; - - background: $color; - &::before { - content: "\f19b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-stack-overflow { - $color: $stack-overflow; - - background: $color; - &::before { - content: "\f16c"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-css3 { - $color: $css3; - - background: $color; - &::before { - content: "\f13c"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-youtube { - $color: $youtube; - - background: $color; - &::before { - content: "\f167"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-dribbble { - $color: $dribbble; - - background: $color; - &::before { - content: "\f17d"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-google-plus { - $color: $google-plus; - - background: $color; - &::before { - content: "\f0d5"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-instagram { - $color: $instagram; - - background: $color; - &::before { - content: "\f16d"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-pinterest { - $color: $pinterest; - - background: $color; - &::before { - content: "\f0d2"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-vk { - $color: $vk; - - background: $color; - &::before { - content: "\f189"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-yahoo { - $color: $yahoo; - - background: $color; - &::before { - content: "\f19e"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-behance { - $color: $behance; - - background: $color; - &::before { - content: "\f1b4"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-dropbox { - $color: $dropbox; - - background: $color; - &::before { - content: "\f16b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-reddit { - $color: $reddit; - - background: $color; - &::before { - content: "\f1a1"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-spotify { - $color: $spotify; - - background: $color; - &::before { - content: "\f1bc"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-vine { - $color: $vine; - - background: $color; - &::before { - content: "\f1ca"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-foursquare { - $color: $foursquare; - - background: $color; - &::before { - content: "\f180"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-vimeo { - $color: $vimeo; - - background: $color; - &::before { - content: "\f194"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_callout.scss b/Angular4_CLI_Full_Project/src/scss/core/_callout.scss deleted file mode 100644 index b98ebac53..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_callout.scss +++ /dev/null @@ -1,55 +0,0 @@ -.callout { - position: relative; - padding: 0 $spacer; - margin: $spacer 0; - border: 0 solid $border-color; - border-left-width: .25rem; - - @if $enable-rounded { - border-radius: .25rem; - } - - .chart-wrapper { - position: absolute; - top: 10px; - left: 50%; - float: right; - width: 50%; - } -} - -.callout-bordered { - border: 1px solid $border-color; - border-left-width: .25rem; -} -.callout code { - border-radius: .25rem; -} -.callout h4 { - margin-top: 0; - margin-bottom: .25rem; -} -.callout p:last-child { - margin-bottom: 0; -} -.callout + .callout { - margin-top: - .25rem; -} - -.callout-default { - border-left-color: $text-muted; - - h4 { - color: $text-muted; - } -} - -@each $color, $value in $theme-colors { - .callout-#{$color} { - border-left-color: $value; - - h4 { - color: $value; - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_card.scss b/Angular4_CLI_Full_Project/src/scss/core/_card.scss deleted file mode 100644 index 20e57a818..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_card.scss +++ /dev/null @@ -1,193 +0,0 @@ -.card { - margin-bottom: 1.5 * $spacer; - - // Cards with color accent - @each $color, $value in $theme-colors { - &.bg-#{$color} { - border-color: darken($value, 12.5%); - .card-header { - background-color: darken($value, 3%); - border-color: darken($value, 12.5%); - } - } - } -} - -.text-white .text-muted { - color: rgba(255,255,255,.6) !important; -} - -.card-header { - - .icon-bg { - display: inline-body; - padding: $card-spacer-y $card-spacer-x !important; - margin-top: -$card-spacer-y; - margin-right: $card-spacer-x; - margin-bottom: -$card-spacer-y; - margin-left: -$card-spacer-x; - line-height: inherit; - color: $card-icon-color; - vertical-align: bottom; - background: $card-icon-bg; - border-right: $card-border-width solid $card-border-color; - } - - .nav.nav-tabs { - margin-top: -$card-spacer-y; - margin-bottom: -$card-spacer-y; - border-bottom: 0; - - .nav-item { - border-top: 0; - } - - .nav-link { - padding: $card-spacer-y $card-spacer-x / 2; - color: $text-muted; - border-top: 0; - - &.active { - color: $body-color; - background: #fff; - } - } - } - - &.card-header-inverse { - color: #fff; - } - - .btn { - margin-top: - $input-btn-padding-y; - } - .btn-sm { - margin-top: - $input-btn-padding-y-sm; - } - .btn-lg { - margin-top: - $input-btn-padding-y-lg; - } -} -// -.card-footer { - - ul { - display: table; - width: 100%; - padding: 0; - margin: 0; - table-layout: fixed; - - li { - display: table-cell; - padding: 0 $card-spacer-x; - text-align: center; - } - } -} - -[class*="card-outline-"] { - .card-body { - background: #fff !important; - } - - &.card-outline-top { - border-top-width: 2px; - border-right-color: $border-color; - border-bottom-color: $border-color; - border-left-color: $border-color; - } -} - -// Cards with color accent -@each $color, $value in $theme-colors { - .card-accent-#{$color} { - @include card-accent-variant($value); - } -} - -// Card Actions -.card-header { - > i { - margin-right: $spacer / 2; - } - .card-actions { - position: absolute; - top: 0; - right: 0; - //height: inherit; - - a, button { - display: block; - float: left; - width: 50px; - padding: $card-spacer-y 0; - margin: 0 !important; - color: $body-color; - text-align: center; - background: transparent; - border: 0; - border-left: 1px solid $border-color; - box-shadow: 0; - - &:hover { - text-decoration: none; - } - - [class^="icon-"], [class*=" icon-"] { - display: inline-body; - vertical-align: middle; - } - - i { - display: inline-body; - transition: .4s; - } - - .r180 { - transform: rotate(180deg); - } - } - - .input-group { - width: 230px; - margin: 6px; - - .input-group-addon { - background: #fff; - } - - input { - border-left: 0; - } - } - } -} - -.card-full { - margin-top: - $spacer; - margin-right: - $grid-gutter-width / 2; - margin-left: - $grid-gutter-width / 2; - border: 0; - border-bottom: $card-border-width solid $border-color; -} - -@include media-breakpoint-up(sm) { - .card-columns { - - &.cols-2 { - column-count: 2; - } - } -} - -.card { - &.drag, .drag { - cursor: move; - } -} - -.card-placeholder { - background: rgba(0,0,0,.025); - border: 1px dashed $gray-300; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_charts.scss b/Angular4_CLI_Full_Project/src/scss/core/_charts.scss deleted file mode 100644 index 0e7a3c2ab..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_charts.scss +++ /dev/null @@ -1,9 +0,0 @@ -.chart-wrapper { - canvas { - width: 100% !important; - } -} -// scss-lint:disable QualifyingElement -base-chart.chart { - display: block !important; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_dropdown-menu-right.scss b/Angular4_CLI_Full_Project/src/scss/core/_dropdown-menu-right.scss deleted file mode 100644 index 4f1954681..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_dropdown-menu-right.scss +++ /dev/null @@ -1,8 +0,0 @@ -// Temp fix for reactstrap -.app-header { - .navbar-nav { - .dropdown-menu-right { - right: auto; - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_dropdown.scss b/Angular4_CLI_Full_Project/src/scss/core/_dropdown.scss deleted file mode 100644 index 564e4df20..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_dropdown.scss +++ /dev/null @@ -1,69 +0,0 @@ -// Links, buttons, and more within the dropdown menu -.dropdown-item { - position: relative; - padding: 10px 20px; - border-bottom: 1px solid $dropdown-border-color; - - &:last-child { - border-bottom: 0; - } - - i { - display: inline-block; - width: 20px; - margin-right: 10px; - margin-left: -10px; - color: $dropdown-border-color; - text-align: center; - } - - .badge { - position: absolute; - right: 10px; - margin-top: 2px; - } -} - -// Dropdown section headers -.dropdown-header { - padding: 8px 20px; - background: $dropdown-divider-bg; - border-bottom: 1px solid $dropdown-border-color; - - .btn { - margin-top: -7px; - color: $dropdown-header-color; - - &:hover { - color: $body-color; - } - - &.pull-right { - margin-right: -20px; - } - } -} - -.dropdown-menu-lg { - width: 250px; -} -.app-header { - .navbar-nav { - .dropdown-menu { - position: absolute; - } - // Menu positioning - // - // Add extra class to `.dropdown-menu` to flip the alignment of the dropdown - // menu with the parent. - .dropdown-menu-right { - right: 0; - left: auto; // Reset the default from `.dropdown-menu` - } - - .dropdown-menu-left { - right: auto; - left: 0; - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_footer.scss b/Angular4_CLI_Full_Project/src/scss/core/_footer.scss deleted file mode 100644 index e01595a1b..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_footer.scss +++ /dev/null @@ -1,9 +0,0 @@ -.app-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - padding: 0 $spacer; - color: $footer-color; - background: $footer-bg; - @include borders($footer-borders); -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_grid.scss b/Angular4_CLI_Full_Project/src/scss/core/_grid.scss deleted file mode 100644 index 0d0963c17..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_grid.scss +++ /dev/null @@ -1,15 +0,0 @@ -.row.row-equal { - padding-right: ($grid-gutter-width / 4); - padding-left: ($grid-gutter-width / 4); - margin-right: ($grid-gutter-width / -2); - margin-left: ($grid-gutter-width / -2); - - [class*="col-"] { - padding-right: ($grid-gutter-width / 4); - padding-left: ($grid-gutter-width / 4); - } -} - -.main .container-fluid { - padding: 0 30px; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_input-group.scss b/Angular4_CLI_Full_Project/src/scss/core/_input-group.scss deleted file mode 100644 index 23b25122c..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_input-group.scss +++ /dev/null @@ -1,6 +0,0 @@ -.input-group-addon, -.input-group-btn { - min-width: 40px; - white-space: nowrap; - vertical-align: middle; // Match the inputs -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_layout.scss b/Angular4_CLI_Full_Project/src/scss/core/_layout.scss deleted file mode 100644 index 8a050031e..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_layout.scss +++ /dev/null @@ -1,384 +0,0 @@ -// IE10&11 Flexbox fix -@media all and (-ms-high-contrast:none) { - html { - display: flex; - flex-direction: column; - } -} - -// app-dashboard and app-root are Angular2+ selectors. You can add here your own selectors if you need. -.app, -app-dashboard, -app-root { - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.app-header { - flex: 0 0 $navbar-height; -} - -.app-footer { - flex: 0 0 $footer-height; -} - -.app-body { - display: flex; - flex-direction: row; - flex-grow: 1; - overflow-x: hidden; - - .main { - flex: 1; - min-width: 0; - } - - .sidebar { - // $sidebar-width is the width of the columns - flex: 0 0 $sidebar-width; - // put the nav on the left - order: -1; - } - - .aside-menu { - // $aside-menu-width is the width of the columns - flex: 0 0 $aside-menu-width; - } -} - -// -// header -// -.header-fixed { - .app-header { - position: fixed; - z-index: $zindex-sticky; - width: 100%; - } - .app-body { - margin-top: $navbar-height; - } -} - -// -// Sidebar -// -.sidebar-hidden { - .sidebar { - margin-left: - $sidebar-width; - } -} - -.sidebar-fixed { - .sidebar { - position: fixed; - z-index: $zindex-sticky - 1; - width: $sidebar-width; - height: calc(100vh - #{$navbar-height}); - // margin-top: - $navbar-height; - - // .sidebar-nav { - // height: calc(100vh - #{$navbar-height}); - // } - } - - .main, .app-footer { - margin-left: $sidebar-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } -} - -.sidebar-off-canvas { - .sidebar { - position: fixed; - z-index: $zindex-sticky - 1; - height: calc(100vh - #{$navbar-height}); - } -} - -@include media-breakpoint-up(lg) { - .sidebar-compact { - .sidebar { - flex: 0 0 $sidebar-compact-width; - } - - &.sidebar-hidden { - .sidebar { - margin-left: - $sidebar-compact-width; - } - } - - &.sidebar-fixed { - .main, .app-footer { - margin-left: $sidebar-compact-width; - } - - .sidebar { - width: $sidebar-compact-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - } - - .sidebar-minimized { - .sidebar { - flex: 0 0 $sidebar-minimized-width; - } - - &.sidebar-hidden { - .sidebar { - margin-left: - $sidebar-minimized-width; - } - } - - &.sidebar-fixed { - .main, .app-footer { - margin-left: $sidebar-minimized-width; - } - - .sidebar { - width: $sidebar-minimized-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - } -} - -// -// Aside Menu -// -.aside-menu-hidden { - .aside-menu { - margin-right: - $aside-menu-width; - } -} - -.aside-menu-fixed { - .aside-menu { - position: fixed; - right: 0; - height: 100%; - - .tab-content { - height: calc(100vh - #{$aside-menu-nav-padding-y * 2 + $font-size-base} - #{$navbar-height}); - } - } - - .main, .app-footer { - margin-right: $aside-menu-width; - } - - &.aside-menu-hidden { - .main, .app-footer { - margin-right: 0; - } - } -} - -.aside-menu-off-canvas { - .aside-menu { - position: fixed; - right: 0; - z-index: $zindex-sticky - 1; - height: 100%; - - .tab-content { - height: calc(100vh - #{$aside-menu-nav-padding-y * 2 + $font-size-base} - #{$navbar-height}); - } - } -} - -// -// Breadcrumb -// -.breadcrumb-fixed { - .main { - $breadcrumb-height: 2 * $breadcrumb-padding-y + $font-size-base + 1.5 * $spacer; - padding-top: $breadcrumb-height; - } - - .breadcrumb { - position: fixed; - top: $navbar-height; - right: 0; - left: 0; - z-index: $zindex-sticky - 2; - } - - // if sidebar + main + aside - .main:nth-child(2) { - .breadcrumb { - right: $aside-menu-width; - left: $sidebar-width; - } - } - - // if sidebar + main - .main:first-child { - .breadcrumb { - right: $aside-menu-width; - left: 0; - } - } - - // if main + aside - .main:last-child { - .breadcrumb { - right: 0; - } - } - - &.sidebar-minimized { - .main .breadcrumb { - left: $sidebar-minimized-width; - } - } - - &.sidebar-hidden, &.sidebar-off-canvas { - .main .breadcrumb { - left: 0; - } - } - - &.aside-menu-hidden, &.aside-menu-off-canvas { - .main .breadcrumb { - right: 0; - } - } -} - -// -// Footer -// -.footer-fixed { - .app-footer { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: $zindex-sticky; - height: $footer-height; - } - - .app-body { - margin-bottom: $footer-height; - } -} - -// -// Animations -// -.app-header, -.app-footer, -.sidebar, -.main, -.aside-menu { - transition: margin-left $layout-transition-speed, margin-right $layout-transition-speed, width $layout-transition-speed, flex $layout-transition-speed; -} -.sidebar-nav { - transition: width $layout-transition-speed; -} -.breadcrumb { - transition: left $layout-transition-speed, right $layout-transition-speed, width $layout-transition-speed; -} - -// -// Mobile layout -// - -@include media-breakpoint-down(md) { - .app-header.navbar { - position: fixed !important; - z-index: $zindex-sticky; - width: 100%; - text-align: center; - background-color: $navbar-brand-bg; - @include borders($navbar-brand-border); - - .navbar-toggler { - @if (lightness( $navbar-brand-bg ) > 40) { - color: $navbar-color; - } @else { - color: #fff; - } - } - - .navbar-brand { - position: absolute; - left: 50%; - margin-left: - ($navbar-brand-width / 2); - } - } - - .app-body { - margin-top: $navbar-height; - } - - .breadcrumb-fixed { - .main:nth-child(2) .breadcrumb { - right: auto; - left: auto; - width: 100%; - } - } - - .sidebar { - position: fixed; - z-index: $zindex-sticky - 1; - width: $mobile-sidebar-width; - height: calc(100vh - #{$navbar-height}); - margin-left: - $mobile-sidebar-width; - - .sidebar-nav, - .nav { - width: $mobile-sidebar-width; - min-height: calc(100vh - #{$navbar-height}); - } - - .sidebar-minimizer { - display: none; - } - } - - .main, .app-footer { - margin-left: 0 !important; - } - - // .aside-menu { - // margin-right: - $aside-menu-width; - // } - - .sidebar-hidden { - .sidebar { - margin-left: - $mobile-sidebar-width; - } - } - - .sidebar-mobile-show { - .sidebar { - width: $mobile-sidebar-width; - margin-left: 0; - } - - .main { - margin-right: - $mobile-sidebar-width !important; - margin-left: $mobile-sidebar-width !important; - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_loading.scss b/Angular4_CLI_Full_Project/src/scss/core/_loading.scss deleted file mode 100644 index 3e409fb7d..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_loading.scss +++ /dev/null @@ -1,128 +0,0 @@ -// Angular Version -// Make clicks pass-through -// scss-lint:disable all -#loading-bar, -#loading-bar-spinner { - -webkit-pointer-events: none; - pointer-events: none; - -moz-transition: 350ms linear all; - -o-transition: 350ms linear all; - -webkit-transition: 350ms linear all; - transition: 350ms linear all; -} - -#loading-bar.ng-enter, -#loading-bar.ng-leave.ng-leave-active, -#loading-bar-spinner.ng-enter, -#loading-bar-spinner.ng-leave.ng-leave-active { - opacity: 0; -} - -#loading-bar.ng-enter.ng-enter-active, -#loading-bar.ng-leave, -#loading-bar-spinner.ng-enter.ng-enter-active, -#loading-bar-spinner.ng-leave { - opacity: 1; -} - -#loading-bar .bar { - position: fixed; - top: 0; - left: 0; - z-index: 20002; - width: 100%; - height: 2px; - background: theme-color("primary"); - border-top-right-radius: 1px; - border-bottom-right-radius: 1px; - -moz-transition: width 350ms; - -o-transition: width 350ms; - -webkit-transition: width 350ms; - transition: width 350ms; -} - -// Fancy blur effect -#loading-bar .peg { - position: absolute; - top: 0; - right: 0; - width: 70px; - height: 2px; - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; - -moz-box-shadow: #29d 1px 0 6px 1px; - -ms-box-shadow: #29d 1px 0 6px 1px; - -webkit-box-shadow: #29d 1px 0 6px 1px; - box-shadow: #29d 1px 0 6px 1px; - opacity: .45; -} - -#loading-bar-spinner { - position: fixed; - top: 10px; - left: 10px; - z-index: 10002; - display: block; -} - -#loading-bar-spinner .spinner-icon { - width: 14px; - height: 14px; - - border: solid 2px transparent; - border-top-color: #29d; - border-left-color: #29d; - border-radius: 50%; - - -moz-animation: loading-bar-spinner 400ms linear infinite; - -ms-animation: loading-bar-spinner 400ms linear infinite; - -o-animation: loading-bar-spinner 400ms linear infinite; - -webkit-animation: loading-bar-spinner 400ms linear infinite; - animation: loading-bar-spinner 400ms linear infinite; -} - -@-webkit-keyframes loading-bar-spinner { - 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } -} -@-moz-keyframes loading-bar-spinner { - 0% { -moz-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -moz-transform: rotate(360deg); transform: rotate(360deg); } -} -@-o-keyframes loading-bar-spinner { - 0% { -o-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -o-transform: rotate(360deg); transform: rotate(360deg); } -} -@-ms-keyframes loading-bar-spinner { - 0% { -ms-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -ms-transform: rotate(360deg); transform: rotate(360deg); } -} -@keyframes loading-bar-spinner { - 0% { transform: rotate(0deg); transform: rotate(0deg); } - 100% { transform: rotate(360deg); transform: rotate(360deg); } -} - -//Ajax & Static Version -.pace { - -webkit-pointer-events: none; - pointer-events: none; - - -moz-user-select: none; - -webkit-user-select: none; - user-select: none; -} - -.pace-inactive { - display: none; -} - -.pace .pace-progress { - position: fixed; - top: 0; - right: 100%; - z-index: 2000; - width: 100%; - height: 2px; - background: theme-color("primary"); -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_mixins.scss b/Angular4_CLI_Full_Project/src/scss/core/_mixins.scss deleted file mode 100644 index 153f1d394..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_mixins.scss +++ /dev/null @@ -1,116 +0,0 @@ -@mixin button-social-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { - padding: $padding-y $padding-x; - font-size: $font-size; - line-height: $line-height; - border: 0; - @include border-radius($border-radius); - - &::before { - width: ($padding-y * 2) + ($font-size * $line-height); - height: ($padding-y * 2) + ($font-size * $line-height); - padding: $padding-y 0; - font-size: $font-size; - line-height: $line-height; - @include border-radius($border-radius); - } - - span { - margin-left: ($padding-y * 2) + ($font-size * $line-height); - } - - &.icon { - width: ($padding-y * 2) + ($font-size * $line-height); - height: ($padding-y * 2) + ($font-size * $line-height); - } -} - -@mixin avatar($width, $status-width) { - position: relative; - display: inline-block; - width: $width; - - .img-avatar { - width: $width; - height: $width; - } - - .avatar-status { - position: absolute; - right: 0; - bottom: 0; - display: block; - width: $status-width; - height: $status-width; - border: 1px solid #fff; - border-radius: 50em; - } -} - -@mixin borders($borders) { - @each $border in $borders { - $direction: nth($border, 1); - @if $direction == "all" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border: $size $style $color; - } @else if $direction == "top" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-top: $size $style $color; - } @else if $direction == "right" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-right: $size $style $color; - } @else if $direction == "bottom" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-bottom: $size $style $color; - } @else if $direction == "left" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-left: $size $style $color; - } - } -} - -@mixin sidebar-width($borders, $width) { - $sidebar-width: $width; - - @each $border in $borders { - $direction: nth($border, 1); - @if $direction == "all" { - $size: map-get(map-get($borders, $direction), size); - $sidebar-width: ($sidebar-width - (2 * $size)); - } @else if $direction == "right" { - $size: map-get(map-get($borders, $direction), size); - $sidebar-width: $sidebar-width - $size; - } @else if $direction == "left" { - $size: map-get(map-get($borders, $direction), size); - $sidebar-width: $sidebar-width - $size; - } - width: $sidebar-width; - } -} - -@mixin bg-variant($parent, $color) { - #{$parent} { - @include border-radius($card-border-radius-inner $card-border-radius-inner $card-border-radius-inner $card-border-radius-inner); - color: #fff !important; - background-color: $color !important; - } - a#{$parent} { - @include hover-focus { - background-color: darken($color, 10%); - } - } -} - -@mixin card-accent-variant($color) { - border-top-width: 2px; - border-top-color: $color; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_mobile.scss b/Angular4_CLI_Full_Project/src/scss/core/_mobile.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/Angular4_CLI_Full_Project/src/scss/core/_modal.scss b/Angular4_CLI_Full_Project/src/scss/core/_modal.scss deleted file mode 100644 index 1c44ddd03..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_modal.scss +++ /dev/null @@ -1,13 +0,0 @@ -@each $color, $value in $theme-colors { - .modal-#{$color} { - - .modal-content { - border-color: $value; - } - - .modal-header { - color: #fff; - background-color: $value; - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_nav.scss b/Angular4_CLI_Full_Project/src/scss/core/_nav.scss deleted file mode 100644 index ba1d64b3a..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_nav.scss +++ /dev/null @@ -1,32 +0,0 @@ -.nav-tabs { - .nav-link { - color: $gray-600; - &.active { - color: $gray-800; - background: #fff; - border-color: $border-color; - border-bottom-color: #fff; - &:focus { - background: #fff; - border-color: $border-color; - border-bottom-color: #fff; - } - } - } -} - -.tab-content { - margin-top: -1px; - background: #fff; - border: 1px solid $border-color; - .tab-pane { - padding: $spacer; - } -} - -.card-block { - .tab-content { - margin-top: 0; - border: 0; - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_navbar.scss b/Angular4_CLI_Full_Project/src/scss/core/_navbar.scss deleted file mode 100644 index 221ab1263..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_navbar.scss +++ /dev/null @@ -1,127 +0,0 @@ -.app-header.navbar { - position: relative; - flex-direction: row; - height: $navbar-height; - padding: 0; - margin: 0; - background-color: $navbar-bg; - @include borders($navbar-border); - - .navbar-brand { - display: inline-block; - width: $navbar-brand-width; - height: $navbar-height; - padding: $navbar-padding-y $navbar-padding-x; - margin-right: 0; - background-color: $navbar-brand-bg; - background-image: $navbar-brand-logo; - background-repeat: no-repeat; - background-position: center center; - background-size: $navbar-brand-logo-size; - @include borders($navbar-brand-border); - } - - .navbar-toggler { - min-width: 50px; - padding: $navbar-toggler-padding-y 0; - - &:hover .navbar-toggler-icon { - background-image: $navbar-toggler-icon-hover; - } - } - - .navbar-toggler-icon { - height: 23px; - background-image: $navbar-toggler-icon; - } - - .navbar-nav { - flex-direction: row; - align-items: center; - } - - .nav-item { - position: relative; - min-width: 50px; - margin: 0 !important; - text-align: center; - - button { - margin: 0 auto; - } - - .nav-link { - padding-top: 0; - padding-bottom: 0; - background: 0; - border: 0; - - .badge { - position: absolute; - top: 50%; - left: 50%; - margin-top: -16px; - margin-left: 0; - } - - > .img-avatar { - height: $navbar-height - 20px; - margin: 0 10px; - } - } - } - - .dropdown-menu { - padding-bottom: 0; - line-height: $line-height-base; - } - - .dropdown-item { - min-width: 180px; - } -} - -.navbar-brand { - color: $navbar-active-color; - - @include hover-focus { - color: $navbar-active-color; - } -} - -.navbar-nav { - .nav-link { - color: $navbar-color; - - @include hover-focus { - color: $navbar-hover-color; - } - } - - .open > .nav-link, - .active > .nav-link, - .nav-link.open, - .nav-link.active { - @include plain-hover-focus { - color: $navbar-active-color; - } - } -} - -.navbar-divider { - background-color: rgba(0,0,0,.075); -} - -@include media-breakpoint-up(lg) { - .brand-minimized { - .app-header.navbar { - .navbar-brand { - width: $navbar-brand-minimized-width; - background-color: $navbar-brand-minimized-bg; - background-image: $navbar-brand-minimized-logo; - background-size: $navbar-brand-minimized-logo-size; - @include borders($navbar-brand-minimized-border); - } - } - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_others.scss b/Angular4_CLI_Full_Project/src/scss/core/_others.scss deleted file mode 100644 index 381baab08..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_others.scss +++ /dev/null @@ -1,4 +0,0 @@ -// scss-lint:disable QualifyingElement -hr.transparent { - border-top: 1px solid transparent; -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_progress.scss b/Angular4_CLI_Full_Project/src/scss/core/_progress.scss deleted file mode 100644 index 65f56dd30..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_progress.scss +++ /dev/null @@ -1,15 +0,0 @@ -.progress-xs { - height: 4px; -} - -.progress-sm { - height: 8px; -} - -// White progress bar -.progress-white { - background-color: rgba(255,255,255,.2) !important; - .progress-bar { - background-color: #fff; - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_rtl.scss b/Angular4_CLI_Full_Project/src/scss/core/_rtl.scss deleted file mode 100644 index 28db38596..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_rtl.scss +++ /dev/null @@ -1,281 +0,0 @@ -// -// RTL Support -// -// scss-lint:disable NestingDepth, SelectorDepth -*[dir="rtl"] { - direction: rtl; - unicode-bidi: embed; - - ul { - -webkit-padding-start: 0; - } - - table tr th { - text-align: right; - } - - // Breadcrumb - - .breadcrumb-item { - float: right; - } - - .breadcrumb-menu { - right: auto; - left: $breadcrumb-padding-x; - } - - // Dropdown - .dropdown-item { - text-align: right; - - i { - margin-right: -10px; - margin-left: 10px; - } - - .badge { - right: auto; - left: 10px; - } - } - - // - // Sidebar - // - .sidebar-hidden { - .sidebar { - margin-right: - $sidebar-width; - } - } - - .sidebar-fixed { - .main, .app-footer { - margin-right: $sidebar-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-right: 0; - } - } - } - - .sidebar-minimized { - .sidebar { - flex: 0 0 $sidebar-minimized-width; - } - - &.sidebar-hidden { - .sidebar { - margin-right: - $sidebar-minimized-width; - margin-left: 0; - } - } - - &.sidebar-fixed { - .main, .app-footer { - margin-right: $sidebar-minimized-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - } - - // - // Aside Menu - // - .aside-menu-hidden { - .aside-menu { - margin-right: 0; - margin-left: - $aside-menu-width; - } - } - - .aside-menu-fixed { - .aside-menu { - right: auto; - left: 0; - } - - .main, .app-footer { - //margin-right: 0; - margin-left: $aside-menu-width; - } - - &.aside-menu-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - - .aside-menu-off-canvas { - .aside-menu { - position: fixed; - right: 0; - z-index: $zindex-sticky - 1; - height: 100%; - - .tab-content { - height: calc(100vh - #{$aside-menu-nav-padding-y * 2 + $font-size-base} - #{$navbar-height}); - } - } - } - - // Sidebar Menu - .sidebar { - .sidebar-nav { - .nav { - .nav-item { - .nav-link { - direction: rtl; - i { - margin: 0 0 0 ($sidebar-nav-link-padding-x / 2); - } - .badge { - float: left; - margin-top: 2px; - // margin-left: 10px; - } - &.nav-dropdown-toggle { - &::before { - position: absolute; - right: auto !important; - left: $sidebar-nav-link-padding-x; - transform: rotate(180deg); - } - } - } - &.nav-dropdown { - &.open { - > .nav-link.nav-dropdown-toggle::before { - transform: rotate(270deg); - } - } - } - } - } - } - } - - .sidebar-minimized .sidebar { - .nav-link { - padding-right: 0; - i { - float: right; - padding: 0; - margin: 0; - } - .badge { - right: auto; - left: 15px; - } - } - .nav > .nav-dropdown { - - &:hover { - > .nav-dropdown-items { - right: $sidebar-minimized-width; - left: 0; - } - } - } - } - - // Horizontal bars - .horizontal-bars { - - li { - - .bars { - padding-right: 100px; - padding-left: 0; - - .progress:first-child { - margin-bottom: 2px; - } - } - } - - &.type-2 { - - li { - - i { - margin-right: 5px; - margin-left: $spacer; - } - - .value { - float: left; - font-weight: 600; - } - - .bars { - padding: 0; - } - } - } - } - - // Icon list - .icons-list { - - li { - position: relative; - height: 40px; - vertical-align: middle; - - i { - float: right; - } - - .desc { - margin-right: 50px; - margin-left: 0; - } - - .value { - right: auto; - left: 45px; - text-align: left; - - strong { - display: block; - margin-top: -3px; - } - } - - .actions { - right: auto; - left: 10px; - } - } - } - - // Callouts - .callout { - border: 0 solid $border-color; - border-right-width: .25rem; - - @each $color, $value in $theme-colors { - &.callout-#{$color} { - border-right-color: $value; - } - } - - .chart-wrapper { - left: 0; - float: left; - } - } - - .callout-default { - border-right-color: $text-muted; - } -} diff --git a/Angular4_CLI_Full_Project/src/scss/core/_sidebar.scss b/Angular4_CLI_Full_Project/src/scss/core/_sidebar.scss deleted file mode 100644 index b77cd5f85..000000000 --- a/Angular4_CLI_Full_Project/src/scss/core/_sidebar.scss +++ /dev/null @@ -1,454 +0,0 @@ -// scss-lint:disable NestingDepth, SelectorDepth -.sidebar { - display: flex; - flex-direction: column; - padding: $sidebar-padding; - color: $sidebar-color; - background: $sidebar-bg; - @include borders($sidebar-borders); - - .sidebar-close { - position: absolute; - right: 0; - display: none; - padding: 0 $spacer; - font-size: 24px; - font-weight: 800; - line-height: $navbar-height; - color: $sidebar-color; - background: 0; - border: 0; - opacity: .8; - - &:hover { - opacity: 1; - } - } - - // Will be added soon - // .sidebar-brand { } - - .sidebar-header { - flex: 0 0 $sidebar-header-height; - padding: $sidebar-header-padding-y $sidebar-header-padding-x; - text-align: center; - background: $sidebar-header-bg; - } - - .sidebar-form .form-control { - color: $sidebar-form-color; - background: $sidebar-form-bg; - border: $sidebar-form-border; - - &::placeholder { - color: $sidebar-form-placeholder-color; - } - } - - .sidebar-nav { - position: relative; - flex: 1; - overflow-x: hidden; - overflow-y: auto; - -ms-overflow-style: -ms-autohiding-scrollbar; - @include sidebar-width($sidebar-borders, $sidebar-width); - - &::-webkit-scrollbar { - position: absolute; - width: 10px; - margin-left: -10px; - -webkit-appearance: none; - } - - &::-webkit-scrollbar-track { - background-color: lighten($sidebar-bg, 5%); - border-right: 1px solid darken($sidebar-bg, 5%); - border-left: 1px solid darken($sidebar-bg, 5%); - } - - &::-webkit-scrollbar-thumb { - height: 50px; - background-color: darken($sidebar-bg, 10%); - background-clip: content-box; - border-color: transparent; - border-style: solid; - border-width: 1px 2px; - } - } - - .nav { - @include sidebar-width($sidebar-borders, $sidebar-width); - flex-direction: column; - min-height: 100%; - } - - .nav-title { - padding: $sidebar-nav-title-padding-y $sidebar-nav-title-padding-x; - font-size: 11px; - font-weight: 600; - color: $sidebar-nav-title-color; - text-transform: uppercase; - } - - .nav-divider, .divider { - height: 10px; - } - - .nav-item { - position: relative; - margin: 0; - transition: background .3s ease-in-out; - } - - .nav-dropdown-items { - max-height: 0; - padding: 0; - margin: 0; - overflow-y: hidden; - transition: max-height .3s ease-in-out; - - .nav-item { - padding: 0; - list-style: none; - } - } - - .nav-link { - display: block; - padding: $sidebar-nav-link-padding-y $sidebar-nav-link-padding-x; - color: $sidebar-nav-link-color; - text-decoration: none; - background: $sidebar-nav-link-bg; - @include borders($sidebar-nav-link-borders); - @if $enable-sidebar-nav-rounded { - border-radius: $border-radius; - } - - i { - display: inline-block; - width: 20px; - margin: 0 ($sidebar-nav-link-padding-x / 2) 0 0; - font-size: 14px; - color: $sidebar-nav-link-icon-color; - text-align: center; - } - - .badge { - float: right; - margin-top: 2px; - } - - &.active { - color: $sidebar-nav-link-active-color; - background: $sidebar-nav-link-active-bg; - @include borders($sidebar-nav-link-active-borders); - - i { - color: $sidebar-nav-link-active-icon-color; - } - } - - &:hover { - color: $sidebar-nav-link-hover-color; - background: $sidebar-nav-link-hover-bg; - @include borders($sidebar-nav-link-hover-borders); - - i { - color: $sidebar-nav-link-hover-icon-color; - } - - &.nav-dropdown-toggle::before { - background-image: $sidebar-nav-dropdown-indicator-hover; - } - } - - @each $color, $value in $theme-colors { - &.nav-link-#{$color} { - background: $value; - i { - color: rgba(255,255,255,.7); - } - &:hover { - background: darken($value,5%) !important; - i { - color: #fff; - } - } - } - } - } - - // ex. Components - .nav-dropdown-toggle { - position: relative; - - &::before { - position: absolute; - top: 50%; - right: $sidebar-nav-link-padding-x; - display: block; - width: 8px; - height: 8px; - padding: 0; - margin-top: -4px; - content: ""; - background-image: $sidebar-nav-dropdown-indicator; - background-repeat: no-repeat; - background-position: center; - transition: transform .3s; - } - } - - // ex. - ` -}) -export class AppBreadcrumbsComponent { - breadcrumbs: Array; - constructor( - private router: Router, - private route: ActivatedRoute - ) { - this.router.events.filter(event => event instanceof NavigationEnd).subscribe((event) => { - this.breadcrumbs = []; - let currentRoute = this.route.root, - url = ''; - do { - const childrenRoutes = currentRoute.children; - currentRoute = null; - // tslint:disable-next-line:no-shadowed-variable - childrenRoutes.forEach(route => { - if (route.outlet === 'primary') { - const routeSnapshot = route.snapshot; - url += '/' + routeSnapshot.url.map(segment => segment.path).join('/'); - this.breadcrumbs.push({ - label: route.snapshot.data, - url: url - }); - currentRoute = route; - } - }); - } while (currentRoute); - }); - } -} diff --git a/Angular4_CLI_Starter/src/app/components/app-breadcrumbs/index.ts b/Angular4_CLI_Starter/src/app/components/app-breadcrumbs/index.ts deleted file mode 100644 index bacc99d1a..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-breadcrumbs/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-breadcrumbs.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-footer/app-footer.component.html b/Angular4_CLI_Starter/src/app/components/app-footer/app-footer.component.html deleted file mode 100644 index 67da272fa..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-footer/app-footer.component.html +++ /dev/null @@ -1,4 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-footer/app-footer.component.ts b/Angular4_CLI_Starter/src/app/components/app-footer/app-footer.component.ts deleted file mode 100644 index 1e8f1ae7d..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-footer/app-footer.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-footer', - templateUrl: './app-footer.component.html' -}) -export class AppFooterComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-footer/index.ts b/Angular4_CLI_Starter/src/app/components/app-footer/index.ts deleted file mode 100644 index f029f1401..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-footer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-footer.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-header/app-header.component.html b/Angular4_CLI_Starter/src/app/components/app-header/app-header.component.html deleted file mode 100644 index 520c3ca5d..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-header/app-header.component.html +++ /dev/null @@ -1,12 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-header/app-header.component.ts b/Angular4_CLI_Starter/src/app/components/app-header/app-header.component.ts deleted file mode 100644 index ee30134c6..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-header/app-header.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-header', - templateUrl: './app-header.component.html' -}) -export class AppHeaderComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-header/index.ts b/Angular4_CLI_Starter/src/app/components/app-header/index.ts deleted file mode 100644 index dcfab511d..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-header/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-header.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/app-sidebar-footer.component.html b/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/app-sidebar-footer.component.html deleted file mode 100644 index 63d421dd0..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/app-sidebar-footer.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/app-sidebar-footer.component.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/app-sidebar-footer.component.ts deleted file mode 100644 index 9b2e92e26..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/app-sidebar-footer.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-footer', - templateUrl: './app-sidebar-footer.component.html' -}) -export class AppSidebarFooterComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/index.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/index.ts deleted file mode 100644 index 5c8e33e88..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-footer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-footer.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-form/app-sidebar-form.component.html b/Angular4_CLI_Starter/src/app/components/app-sidebar-form/app-sidebar-form.component.html deleted file mode 100644 index b5f736b8f..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-form/app-sidebar-form.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-form/app-sidebar-form.component.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-form/app-sidebar-form.component.ts deleted file mode 100644 index e1a39dc12..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-form/app-sidebar-form.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-form', - templateUrl: './app-sidebar-form.component.html' -}) -export class AppSidebarFormComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-form/index.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-form/index.ts deleted file mode 100644 index 63300f660..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-form/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-form.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-header/app-sidebar-header.component.html b/Angular4_CLI_Starter/src/app/components/app-sidebar-header/app-sidebar-header.component.html deleted file mode 100644 index 807585ce2..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-header/app-sidebar-header.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-header/app-sidebar-header.component.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-header/app-sidebar-header.component.ts deleted file mode 100644 index db1182ae5..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-header/app-sidebar-header.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-header', - templateUrl: './app-sidebar-header.component.html' -}) -export class AppSidebarHeaderComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-header/index.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-header/index.ts deleted file mode 100644 index 6b1403eab..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-header/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-header.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.html b/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.html deleted file mode 100644 index 462b3db25..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.ts deleted file mode 100644 index 5378fbff9..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/app-sidebar-minimizer.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar-minimizer', - templateUrl: './app-sidebar-minimizer.component.html' -}) -export class AppSidebarMinimizerComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/index.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/index.ts deleted file mode 100644 index 5b646bd76..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-minimizer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-minimizer.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-nav/app-sidebar-nav.component.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-nav/app-sidebar-nav.component.ts deleted file mode 100644 index 1e7baa0ee..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-nav/app-sidebar-nav.component.ts +++ /dev/null @@ -1,189 +0,0 @@ -import { Component, ElementRef, Input, OnInit, Renderer2 } from '@angular/core'; - -// Import navigation elements -import { navigation } from './../../_nav'; - -@Component({ - selector: 'app-sidebar-nav', - template: ` - ` -}) -export class AppSidebarNavComponent { - - public navigation = navigation; - - public isDivider(item) { - return item.divider ? true : false - } - - public isTitle(item) { - return item.title ? true : false - } - - constructor() { } -} - -import { Router } from '@angular/router'; - -@Component({ - selector: 'app-sidebar-nav-item', - template: ` -
  • - -
  • - -
  • - -
  • -
    - ` -}) -export class AppSidebarNavItemComponent { - @Input() item: any; - - public hasClass() { - return this.item.class ? true : false - } - - public isDropdown() { - return this.item.children ? true : false - } - - public thisUrl() { - return this.item.url - } - - public isActive() { - return this.router.isActive(this.thisUrl(), false) - } - - constructor( private router: Router ) { } - -} - -@Component({ - selector: 'app-sidebar-nav-link', - template: ` - - - {{ link.name }} - {{ link.badge.text }} - - - - - {{ link.name }} - {{ link.badge.text }} - - - ` -}) -export class AppSidebarNavLinkComponent { - @Input() link: any; - - public hasVariant() { - return this.link.variant ? true : false - } - - public isBadge() { - return this.link.badge ? true : false - } - - public isExternalLink() { - return this.link.url.substring(0, 4) === 'http' ? true : false - } - - public isIcon() { - return this.link.icon ? true : false - } - - constructor() { } -} - -@Component({ - selector: 'app-sidebar-nav-dropdown', - template: ` - - - {{ link.name }} - {{ link.badge.text }} - - - ` -}) -export class AppSidebarNavDropdownComponent { - @Input() link: any; - - public isBadge() { - return this.link.badge ? true : false - } - - public isIcon() { - return this.link.icon ? true : false - } - - constructor() { } -} - -@Component({ - selector: 'app-sidebar-nav-title', - template: '' -}) -export class AppSidebarNavTitleComponent implements OnInit { - @Input() title: any; - - constructor(private el: ElementRef, private renderer: Renderer2) { } - - ngOnInit() { - const nativeElement: HTMLElement = this.el.nativeElement; - const li = this.renderer.createElement('li'); - const name = this.renderer.createText(this.title.name); - - this.renderer.addClass(li, 'nav-title'); - - if ( this.title.class ) { - const classes = this.title.class; - this.renderer.addClass(li, classes); - } - - if ( this.title.wrapper ) { - const wrapper = this.renderer.createElement(this.title.wrapper.element); - - this.renderer.appendChild(wrapper, name); - this.renderer.appendChild(li, wrapper); - } else { - this.renderer.appendChild(li, name); - } - this.renderer.appendChild(nativeElement, li) - } -} - -export const APP_SIDEBAR_NAV = [ - AppSidebarNavComponent, - AppSidebarNavDropdownComponent, - AppSidebarNavItemComponent, - AppSidebarNavLinkComponent, - AppSidebarNavTitleComponent -]; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar-nav/index.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar-nav/index.ts deleted file mode 100644 index 958932a26..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar-nav/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar-nav.component'; diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar/app-sidebar.component.html b/Angular4_CLI_Starter/src/app/components/app-sidebar/app-sidebar.component.html deleted file mode 100644 index ac0dda4eb..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar/app-sidebar.component.html +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar/app-sidebar.component.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar/app-sidebar.component.ts deleted file mode 100644 index 7f5065cb5..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar/app-sidebar.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-sidebar', - templateUrl: './app-sidebar.component.html' -}) -export class AppSidebarComponent { } diff --git a/Angular4_CLI_Starter/src/app/components/app-sidebar/index.ts b/Angular4_CLI_Starter/src/app/components/app-sidebar/index.ts deleted file mode 100644 index 173dc43d8..000000000 --- a/Angular4_CLI_Starter/src/app/components/app-sidebar/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './app-sidebar.component'; diff --git a/Angular4_CLI_Starter/src/app/components/index.ts b/Angular4_CLI_Starter/src/app/components/index.ts deleted file mode 100644 index 9980de04d..000000000 --- a/Angular4_CLI_Starter/src/app/components/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export * from './app-aside'; -export * from './app-breadcrumbs'; -export * from './app-footer'; -export * from './app-header'; -export * from './app-sidebar'; -export * from './app-sidebar-footer'; -export * from './app-sidebar-form'; -export * from './app-sidebar-header'; -export * from './app-sidebar-minimizer'; -export * from './app-sidebar-nav'; diff --git a/Angular4_CLI_Starter/src/app/containers/full-layout/full-layout.component.html b/Angular4_CLI_Starter/src/app/containers/full-layout/full-layout.component.html deleted file mode 100644 index 93e3f312f..000000000 --- a/Angular4_CLI_Starter/src/app/containers/full-layout/full-layout.component.html +++ /dev/null @@ -1,16 +0,0 @@ - -
    - - -
    - - -
    - -
    -
    - -
    - diff --git a/Angular4_CLI_Starter/src/app/containers/full-layout/full-layout.component.ts b/Angular4_CLI_Starter/src/app/containers/full-layout/full-layout.component.ts deleted file mode 100644 index 753518cac..000000000 --- a/Angular4_CLI_Starter/src/app/containers/full-layout/full-layout.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-dashboard', - templateUrl: './full-layout.component.html' -}) -export class FullLayoutComponent { } diff --git a/Angular4_CLI_Starter/src/app/containers/full-layout/index.ts b/Angular4_CLI_Starter/src/app/containers/full-layout/index.ts deleted file mode 100644 index 315223dd1..000000000 --- a/Angular4_CLI_Starter/src/app/containers/full-layout/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './full-layout.component'; diff --git a/Angular4_CLI_Starter/src/app/containers/index.ts b/Angular4_CLI_Starter/src/app/containers/index.ts deleted file mode 100644 index b917dd1ce..000000000 --- a/Angular4_CLI_Starter/src/app/containers/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './full-layout'; -export * from './simple-layout'; diff --git a/Angular4_CLI_Starter/src/app/containers/simple-layout/index.ts b/Angular4_CLI_Starter/src/app/containers/simple-layout/index.ts deleted file mode 100644 index 651070369..000000000 --- a/Angular4_CLI_Starter/src/app/containers/simple-layout/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './simple-layout.component'; diff --git a/Angular4_CLI_Starter/src/app/containers/simple-layout/simple-layout.component.html b/Angular4_CLI_Starter/src/app/containers/simple-layout/simple-layout.component.html deleted file mode 100644 index e69de29bb..000000000 diff --git a/Angular4_CLI_Starter/src/app/containers/simple-layout/simple-layout.component.ts b/Angular4_CLI_Starter/src/app/containers/simple-layout/simple-layout.component.ts deleted file mode 100644 index 90cca2e9e..000000000 --- a/Angular4_CLI_Starter/src/app/containers/simple-layout/simple-layout.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-dashboard', - template: '', -}) -export class SimpleLayoutComponent { } diff --git a/Angular4_CLI_Starter/src/app/directives/aside/aside.directive.ts b/Angular4_CLI_Starter/src/app/directives/aside/aside.directive.ts deleted file mode 100644 index b3cc4710a..000000000 --- a/Angular4_CLI_Starter/src/app/directives/aside/aside.directive.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Directive, HostListener } from '@angular/core'; - -/** -* Allows the aside to be toggled via click. -*/ -@Directive({ - selector: '[appAsideMenuToggler]', -}) -export class AsideToggleDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('aside-menu-hidden'); - } -} diff --git a/Angular4_CLI_Starter/src/app/directives/aside/index.ts b/Angular4_CLI_Starter/src/app/directives/aside/index.ts deleted file mode 100644 index 3b84b7004..000000000 --- a/Angular4_CLI_Starter/src/app/directives/aside/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './aside.directive'; diff --git a/Angular4_CLI_Starter/src/app/directives/index.ts b/Angular4_CLI_Starter/src/app/directives/index.ts deleted file mode 100644 index cd971e8fa..000000000 --- a/Angular4_CLI_Starter/src/app/directives/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from './aside'; -export * from './nav-dropdown'; -export * from './replace'; -export * from './sidebar'; diff --git a/Angular4_CLI_Starter/src/app/directives/nav-dropdown/index.ts b/Angular4_CLI_Starter/src/app/directives/nav-dropdown/index.ts deleted file mode 100644 index 3eb078779..000000000 --- a/Angular4_CLI_Starter/src/app/directives/nav-dropdown/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './nav-dropdown.directive'; diff --git a/Angular4_CLI_Starter/src/app/directives/nav-dropdown/nav-dropdown.directive.ts b/Angular4_CLI_Starter/src/app/directives/nav-dropdown/nav-dropdown.directive.ts deleted file mode 100644 index 98c827de8..000000000 --- a/Angular4_CLI_Starter/src/app/directives/nav-dropdown/nav-dropdown.directive.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Directive, HostListener, ElementRef } from '@angular/core'; - -@Directive({ - selector: '[appNavDropdown]' -}) -export class NavDropdownDirective { - - constructor(private el: ElementRef) { } - - toggle() { - this.el.nativeElement.classList.toggle('open'); - } -} - -/** -* Allows the dropdown to be toggled via click. -*/ -@Directive({ - selector: '[appNavDropdownToggle]' -}) -export class NavDropdownToggleDirective { - constructor(private dropdown: NavDropdownDirective) {} - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - this.dropdown.toggle(); - } -} - -export const NAV_DROPDOWN_DIRECTIVES = [NavDropdownDirective, NavDropdownToggleDirective]; diff --git a/Angular4_CLI_Starter/src/app/directives/replace/index.ts b/Angular4_CLI_Starter/src/app/directives/replace/index.ts deleted file mode 100644 index 8720adf84..000000000 --- a/Angular4_CLI_Starter/src/app/directives/replace/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './replace.directive'; diff --git a/Angular4_CLI_Starter/src/app/directives/replace/replace.directive.ts b/Angular4_CLI_Starter/src/app/directives/replace/replace.directive.ts deleted file mode 100644 index d5ca81e07..000000000 --- a/Angular4_CLI_Starter/src/app/directives/replace/replace.directive.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Directive, ElementRef, OnInit } from '@angular/core'; - -@Directive({ - // tslint:disable-next-line:max-line-length - selector: '[appHostReplace], app-aside, app-breadcrumbs, app-footer, app-header, app-sidebar, app-sidebar-footer, app-sidebar-form, app-sidebar-header, app-sidebar-minimizer, app-sidebar-nav, app-sidebar-nav-dropdown, app-sidebar-nav-item, app-sidebar-nav-link, app-sidebar-nav-title' -}) -export class ReplaceDirective implements OnInit { - - constructor(private el: ElementRef) { } - - // wait for the component to render completely - ngOnInit() { - const nativeElement: HTMLElement = this.el.nativeElement; - const parentElement: HTMLElement = nativeElement.parentElement; - // move all children out of the element - while (nativeElement.firstChild) { - parentElement.insertBefore(nativeElement.firstChild, nativeElement); - } - // remove the empty element(the host) - parentElement.removeChild(nativeElement); - } -} diff --git a/Angular4_CLI_Starter/src/app/directives/sidebar/index.ts b/Angular4_CLI_Starter/src/app/directives/sidebar/index.ts deleted file mode 100644 index aeb5775be..000000000 --- a/Angular4_CLI_Starter/src/app/directives/sidebar/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './sidebar.directive'; diff --git a/Angular4_CLI_Starter/src/app/directives/sidebar/sidebar.directive.ts b/Angular4_CLI_Starter/src/app/directives/sidebar/sidebar.directive.ts deleted file mode 100644 index 956465b39..000000000 --- a/Angular4_CLI_Starter/src/app/directives/sidebar/sidebar.directive.ts +++ /dev/null @@ -1,106 +0,0 @@ -import { Directive, HostListener } from '@angular/core'; - -/** -* Allows the sidebar to be toggled via click. -*/ -@Directive({ - selector: '[appSidebarToggler]' -}) -export class SidebarToggleDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('sidebar-hidden'); - } -} - -@Directive({ - selector: '[appSidebarMinimizer]' -}) -export class SidebarMinimizeDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('sidebar-minimized'); - } -} - -@Directive({ - selector: '[appBrandMinimizer]' -}) -export class BrandMinimizeDirective { - constructor() { } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('brand-minimized'); - } -} - -@Directive({ - selector: '[appMobileSidebarToggler]' -}) -export class MobileSidebarToggleDirective { - constructor() { } - - // Check if element has class - private hasClass(target: any, elementClassName: string) { - return new RegExp('(\\s|^)' + elementClassName + '(\\s|$)').test(target.className); - } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - document.querySelector('body').classList.toggle('sidebar-mobile-show'); - } -} - -/** -* Allows the off-canvas sidebar to be closed via click. -*/ -@Directive({ - selector: '[appSidebarClose]' -}) -export class SidebarOffCanvasCloseDirective { - constructor() { } - - // Check if element has class - private hasClass(target: any, elementClassName: string) { - return new RegExp('(\\s|^)' + elementClassName + '(\\s|$)').test(target.className); - } - - // Toggle element class - private toggleClass(elem: any, elementClassName: string) { - let newClass = ' ' + elem.className.replace( /[\t\r\n]/g, ' ' ) + ' '; - if (this.hasClass(elem, elementClassName)) { - while (newClass.indexOf(' ' + elementClassName + ' ') >= 0 ) { - newClass = newClass.replace( ' ' + elementClassName + ' ' , ' ' ); - } - elem.className = newClass.replace(/^\s+|\s+$/g, ''); - } else { - elem.className += ' ' + elementClassName; - } - } - - @HostListener('click', ['$event']) - toggleOpen($event: any) { - $event.preventDefault(); - - if (this.hasClass(document.querySelector('body'), 'sidebar-off-canvas')) { - this.toggleClass(document.querySelector('body'), 'sidebar-opened'); - } - } -} - -export const SIDEBAR_TOGGLE_DIRECTIVES = [ - SidebarToggleDirective, - SidebarMinimizeDirective, - BrandMinimizeDirective, - SidebarOffCanvasCloseDirective, - MobileSidebarToggleDirective -]; diff --git a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard-routing.module.ts b/Angular4_CLI_Starter/src/app/views/dashboard/dashboard-routing.module.ts deleted file mode 100644 index c56e63abc..000000000 --- a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard-routing.module.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, - RouterModule } from '@angular/router'; - -import { DashboardComponent } from './dashboard.component'; - -const routes: Routes = [ - { - path: '', - component: DashboardComponent, - data: { - title: 'Dashboard' - } - } -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule] -}) -export class DashboardRoutingModule {} diff --git a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.component.html b/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.component.html deleted file mode 100644 index e4bfccfe3..000000000 --- a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.component.html +++ /dev/null @@ -1,3 +0,0 @@ -
    - Hello World! -
    diff --git a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.component.ts b/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.component.ts deleted file mode 100644 index 335428f77..000000000 --- a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.component.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Component } from '@angular/core'; -import { Router } from '@angular/router'; - -@Component({ - templateUrl: 'dashboard.component.html' -}) -export class DashboardComponent { - - constructor( ) { } - -} diff --git a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.module.ts b/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.module.ts deleted file mode 100644 index 029625252..000000000 --- a/Angular4_CLI_Starter/src/app/views/dashboard/dashboard.module.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { NgModule } from '@angular/core'; -import { ChartsModule } from 'ng2-charts/ng2-charts'; - -import { DashboardComponent } from './dashboard.component'; -import { DashboardRoutingModule } from './dashboard-routing.module'; - -@NgModule({ - imports: [ - DashboardRoutingModule, - ChartsModule - ], - declarations: [ DashboardComponent ] -}) -export class DashboardModule { } diff --git a/Angular4_CLI_Starter/src/assets/.gitkeep b/Angular4_CLI_Starter/src/assets/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/Angular4_CLI_Starter/src/assets/.npmignore b/Angular4_CLI_Starter/src/assets/.npmignore deleted file mode 100644 index e69de29bb..000000000 diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/1.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/1.jpg deleted file mode 100644 index 0b0870375..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/1.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/2.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/2.jpg deleted file mode 100644 index e7367094a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/2.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/3.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/3.jpg deleted file mode 100644 index caf9a7e7c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/3.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/4.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/4.jpg deleted file mode 100644 index 97f676969..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/4.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/5.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/5.jpg deleted file mode 100644 index 82b025fe9..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/5.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/6.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/6.jpg deleted file mode 100644 index 1d2b88439..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/6.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/7.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/7.jpg deleted file mode 100644 index 2903cd2f9..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/7.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/avatars/8.jpg b/Angular4_CLI_Starter/src/assets/img/avatars/8.jpg deleted file mode 100644 index 3a5eba9e2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/avatars/8.jpg and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/favicon.png b/Angular4_CLI_Starter/src/assets/img/favicon.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/favicon.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/ASEAN.png b/Angular4_CLI_Starter/src/assets/img/flags/ASEAN.png deleted file mode 100755 index 1fb1b9184..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/ASEAN.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Afghanistan.png b/Angular4_CLI_Starter/src/assets/img/flags/Afghanistan.png deleted file mode 100755 index 2575b8a92..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Afghanistan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/African Union.png b/Angular4_CLI_Starter/src/assets/img/flags/African Union.png deleted file mode 100755 index 85b268ef4..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/African Union.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Albania.png b/Angular4_CLI_Starter/src/assets/img/flags/Albania.png deleted file mode 100755 index 2e16c3b68..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Albania.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Algeria.png b/Angular4_CLI_Starter/src/assets/img/flags/Algeria.png deleted file mode 100755 index 69477f04b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Algeria.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/American Samoa.png b/Angular4_CLI_Starter/src/assets/img/flags/American Samoa.png deleted file mode 100755 index b0d4cdc67..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/American Samoa.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Andorra.png b/Angular4_CLI_Starter/src/assets/img/flags/Andorra.png deleted file mode 100755 index e753cd652..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Andorra.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Angola.png b/Angular4_CLI_Starter/src/assets/img/flags/Angola.png deleted file mode 100755 index 97ae9630e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Angola.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Anguilla.png b/Angular4_CLI_Starter/src/assets/img/flags/Anguilla.png deleted file mode 100755 index 7a6ac041f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Anguilla.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Antarctica.png b/Angular4_CLI_Starter/src/assets/img/flags/Antarctica.png deleted file mode 100755 index a97b3552d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Antarctica.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Antigua & Barbuda.png b/Angular4_CLI_Starter/src/assets/img/flags/Antigua & Barbuda.png deleted file mode 100755 index cfc157a57..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Antigua & Barbuda.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Arab League.png b/Angular4_CLI_Starter/src/assets/img/flags/Arab League.png deleted file mode 100755 index 646a3f724..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Arab League.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Argentina.png b/Angular4_CLI_Starter/src/assets/img/flags/Argentina.png deleted file mode 100755 index 62d15185b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Argentina.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Armenia.png b/Angular4_CLI_Starter/src/assets/img/flags/Armenia.png deleted file mode 100755 index f4f9baeae..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Armenia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Aruba.png b/Angular4_CLI_Starter/src/assets/img/flags/Aruba.png deleted file mode 100755 index 0083ef62d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Aruba.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Australia.png b/Angular4_CLI_Starter/src/assets/img/flags/Australia.png deleted file mode 100755 index 893740458..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Australia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Austria.png b/Angular4_CLI_Starter/src/assets/img/flags/Austria.png deleted file mode 100755 index fe66fef45..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Austria.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Azerbaijan.png b/Angular4_CLI_Starter/src/assets/img/flags/Azerbaijan.png deleted file mode 100755 index 1850abc9e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Azerbaijan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bahamas.png b/Angular4_CLI_Starter/src/assets/img/flags/Bahamas.png deleted file mode 100755 index 753fc830e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bahamas.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bahrain.png b/Angular4_CLI_Starter/src/assets/img/flags/Bahrain.png deleted file mode 100755 index c45c7b482..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bahrain.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bangladesh.png b/Angular4_CLI_Starter/src/assets/img/flags/Bangladesh.png deleted file mode 100755 index 8ef2443cb..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bangladesh.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Barbados.png b/Angular4_CLI_Starter/src/assets/img/flags/Barbados.png deleted file mode 100755 index d440d410e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Barbados.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Belarus.png b/Angular4_CLI_Starter/src/assets/img/flags/Belarus.png deleted file mode 100755 index ce75c73c7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Belarus.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Belgium.png b/Angular4_CLI_Starter/src/assets/img/flags/Belgium.png deleted file mode 100755 index 1d3df4c5e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Belgium.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Belize.png b/Angular4_CLI_Starter/src/assets/img/flags/Belize.png deleted file mode 100755 index 4a9aea027..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Belize.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Benin.png b/Angular4_CLI_Starter/src/assets/img/flags/Benin.png deleted file mode 100755 index af460631b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Benin.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bermuda.png b/Angular4_CLI_Starter/src/assets/img/flags/Bermuda.png deleted file mode 100755 index 880d96531..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bermuda.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bhutan.png b/Angular4_CLI_Starter/src/assets/img/flags/Bhutan.png deleted file mode 100755 index db0372ed3..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bhutan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bolivia.png b/Angular4_CLI_Starter/src/assets/img/flags/Bolivia.png deleted file mode 100755 index a28f06094..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bolivia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bosnia & Herzegovina.png b/Angular4_CLI_Starter/src/assets/img/flags/Bosnia & Herzegovina.png deleted file mode 100755 index 806d05d2c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bosnia & Herzegovina.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Botswana.png b/Angular4_CLI_Starter/src/assets/img/flags/Botswana.png deleted file mode 100755 index 9a06843f2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Botswana.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Brazil.png b/Angular4_CLI_Starter/src/assets/img/flags/Brazil.png deleted file mode 100755 index 47a007f2d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Brazil.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Brunei.png b/Angular4_CLI_Starter/src/assets/img/flags/Brunei.png deleted file mode 100755 index 650cca6d8..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Brunei.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Bulgaria.png b/Angular4_CLI_Starter/src/assets/img/flags/Bulgaria.png deleted file mode 100755 index c13019287..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Bulgaria.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Burkina Faso.png b/Angular4_CLI_Starter/src/assets/img/flags/Burkina Faso.png deleted file mode 100755 index 13ff13262..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Burkina Faso.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Burundi.png b/Angular4_CLI_Starter/src/assets/img/flags/Burundi.png deleted file mode 100755 index 15e76aa27..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Burundi.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/CARICOM.png b/Angular4_CLI_Starter/src/assets/img/flags/CARICOM.png deleted file mode 100755 index 19dfeae34..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/CARICOM.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/CIS.png b/Angular4_CLI_Starter/src/assets/img/flags/CIS.png deleted file mode 100755 index 809c0261a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/CIS.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cambodja.png b/Angular4_CLI_Starter/src/assets/img/flags/Cambodja.png deleted file mode 100755 index 65b4c06e3..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cambodja.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cameroon.png b/Angular4_CLI_Starter/src/assets/img/flags/Cameroon.png deleted file mode 100755 index 32eccee5e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cameroon.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Canada.png b/Angular4_CLI_Starter/src/assets/img/flags/Canada.png deleted file mode 100755 index bfff41403..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Canada.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cape Verde.png b/Angular4_CLI_Starter/src/assets/img/flags/Cape Verde.png deleted file mode 100755 index 103043c26..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cape Verde.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cayman Islands.png b/Angular4_CLI_Starter/src/assets/img/flags/Cayman Islands.png deleted file mode 100755 index f2a6b6c21..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cayman Islands.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Central African Republic.png b/Angular4_CLI_Starter/src/assets/img/flags/Central African Republic.png deleted file mode 100755 index 3f0b50179..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Central African Republic.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Chad.png b/Angular4_CLI_Starter/src/assets/img/flags/Chad.png deleted file mode 100755 index c74a4a4a6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Chad.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Chile.png b/Angular4_CLI_Starter/src/assets/img/flags/Chile.png deleted file mode 100755 index 3e764627a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Chile.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/China.png b/Angular4_CLI_Starter/src/assets/img/flags/China.png deleted file mode 100755 index d0da5509b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/China.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Colombia.png b/Angular4_CLI_Starter/src/assets/img/flags/Colombia.png deleted file mode 100755 index da19e539e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Colombia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Commonwealth.png b/Angular4_CLI_Starter/src/assets/img/flags/Commonwealth.png deleted file mode 100755 index aa0d8abb0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Commonwealth.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Comoros.png b/Angular4_CLI_Starter/src/assets/img/flags/Comoros.png deleted file mode 100755 index 051fc5ad1..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Comoros.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Congo-Brazzaville.png b/Angular4_CLI_Starter/src/assets/img/flags/Congo-Brazzaville.png deleted file mode 100755 index f8c0b25e9..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Congo-Brazzaville.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Congo-Kinshasa(Zaire).png b/Angular4_CLI_Starter/src/assets/img/flags/Congo-Kinshasa(Zaire).png deleted file mode 100755 index be42ea091..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Congo-Kinshasa(Zaire).png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cook Islands.png b/Angular4_CLI_Starter/src/assets/img/flags/Cook Islands.png deleted file mode 100755 index 7c432c890..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cook Islands.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Costa Rica.png b/Angular4_CLI_Starter/src/assets/img/flags/Costa Rica.png deleted file mode 100755 index 44a30739b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Costa Rica.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cote d'Ivoire.png b/Angular4_CLI_Starter/src/assets/img/flags/Cote d'Ivoire.png deleted file mode 100755 index 1fee82cae..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cote d'Ivoire.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Croatia.png b/Angular4_CLI_Starter/src/assets/img/flags/Croatia.png deleted file mode 100755 index 4cb4ea74c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Croatia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cuba.png b/Angular4_CLI_Starter/src/assets/img/flags/Cuba.png deleted file mode 100755 index 4e3cf2993..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cuba.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Cyprus.png b/Angular4_CLI_Starter/src/assets/img/flags/Cyprus.png deleted file mode 100755 index df22c0335..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Cyprus.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Czech Republic.png b/Angular4_CLI_Starter/src/assets/img/flags/Czech Republic.png deleted file mode 100755 index 31f9ad9b1..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Czech Republic.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Denmark.png b/Angular4_CLI_Starter/src/assets/img/flags/Denmark.png deleted file mode 100755 index 3f4dac36d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Denmark.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Djibouti.png b/Angular4_CLI_Starter/src/assets/img/flags/Djibouti.png deleted file mode 100755 index 8f32f7483..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Djibouti.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Dominica.png b/Angular4_CLI_Starter/src/assets/img/flags/Dominica.png deleted file mode 100755 index e70b1a452..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Dominica.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Dominican Republic.png b/Angular4_CLI_Starter/src/assets/img/flags/Dominican Republic.png deleted file mode 100755 index ca2d40acc..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Dominican Republic.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Ecuador.png b/Angular4_CLI_Starter/src/assets/img/flags/Ecuador.png deleted file mode 100755 index 4913cec5a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Ecuador.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Egypt.png b/Angular4_CLI_Starter/src/assets/img/flags/Egypt.png deleted file mode 100755 index ee9fef081..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Egypt.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/El Salvador.png b/Angular4_CLI_Starter/src/assets/img/flags/El Salvador.png deleted file mode 100755 index adf8750b1..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/El Salvador.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/England.png b/Angular4_CLI_Starter/src/assets/img/flags/England.png deleted file mode 100755 index 22fb06b5a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/England.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Equatorial Guinea.png b/Angular4_CLI_Starter/src/assets/img/flags/Equatorial Guinea.png deleted file mode 100755 index 13d3c92db..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Equatorial Guinea.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Eritrea.png b/Angular4_CLI_Starter/src/assets/img/flags/Eritrea.png deleted file mode 100755 index 5f38c52a0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Eritrea.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Estonia.png b/Angular4_CLI_Starter/src/assets/img/flags/Estonia.png deleted file mode 100755 index 3eadb299b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Estonia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Ethiopia.png b/Angular4_CLI_Starter/src/assets/img/flags/Ethiopia.png deleted file mode 100755 index b29191fcd..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Ethiopia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/European Union.png b/Angular4_CLI_Starter/src/assets/img/flags/European Union.png deleted file mode 100755 index 18c86daf8..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/European Union.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Faroes.png b/Angular4_CLI_Starter/src/assets/img/flags/Faroes.png deleted file mode 100755 index 1bfb68e86..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Faroes.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Fiji.png b/Angular4_CLI_Starter/src/assets/img/flags/Fiji.png deleted file mode 100755 index d96b232e0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Fiji.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Finland.png b/Angular4_CLI_Starter/src/assets/img/flags/Finland.png deleted file mode 100755 index 97d47a9fe..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Finland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/France.png b/Angular4_CLI_Starter/src/assets/img/flags/France.png deleted file mode 100755 index 12318d45d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/France.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Gabon.png b/Angular4_CLI_Starter/src/assets/img/flags/Gabon.png deleted file mode 100755 index bb1f634c7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Gabon.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Gambia.png b/Angular4_CLI_Starter/src/assets/img/flags/Gambia.png deleted file mode 100755 index e4bee6cea..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Gambia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Georgia.png b/Angular4_CLI_Starter/src/assets/img/flags/Georgia.png deleted file mode 100755 index fb293a0b7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Georgia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Germany.png b/Angular4_CLI_Starter/src/assets/img/flags/Germany.png deleted file mode 100755 index 77e9338ba..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Germany.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Ghana.png b/Angular4_CLI_Starter/src/assets/img/flags/Ghana.png deleted file mode 100755 index 16ddfb4f6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Ghana.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Gibraltar.png b/Angular4_CLI_Starter/src/assets/img/flags/Gibraltar.png deleted file mode 100755 index 3d3b66dcb..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Gibraltar.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Greece.png b/Angular4_CLI_Starter/src/assets/img/flags/Greece.png deleted file mode 100755 index b00fd5a7e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Greece.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Greenland.png b/Angular4_CLI_Starter/src/assets/img/flags/Greenland.png deleted file mode 100755 index 8dc87f4de..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Greenland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Grenada.png b/Angular4_CLI_Starter/src/assets/img/flags/Grenada.png deleted file mode 100755 index 26be61eed..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Grenada.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guadeloupe.png b/Angular4_CLI_Starter/src/assets/img/flags/Guadeloupe.png deleted file mode 100755 index 53dca174f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guadeloupe.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guam.png b/Angular4_CLI_Starter/src/assets/img/flags/Guam.png deleted file mode 100755 index f1d6b7a48..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guam.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guatemala.png b/Angular4_CLI_Starter/src/assets/img/flags/Guatemala.png deleted file mode 100755 index e5580e93d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guatemala.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guernsey.png b/Angular4_CLI_Starter/src/assets/img/flags/Guernsey.png deleted file mode 100755 index 0514cc9e4..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guernsey.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guinea-Bissau.png b/Angular4_CLI_Starter/src/assets/img/flags/Guinea-Bissau.png deleted file mode 100755 index d097a2897..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guinea-Bissau.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guinea.png b/Angular4_CLI_Starter/src/assets/img/flags/Guinea.png deleted file mode 100755 index f71c621ff..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guinea.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Guyana.png b/Angular4_CLI_Starter/src/assets/img/flags/Guyana.png deleted file mode 100755 index 76eabd9ca..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Guyana.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Haiti.png b/Angular4_CLI_Starter/src/assets/img/flags/Haiti.png deleted file mode 100755 index 325cef0cc..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Haiti.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Honduras.png b/Angular4_CLI_Starter/src/assets/img/flags/Honduras.png deleted file mode 100755 index 1f327f1b5..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Honduras.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Hong Kong.png b/Angular4_CLI_Starter/src/assets/img/flags/Hong Kong.png deleted file mode 100755 index 46208e0d5..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Hong Kong.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Hungary.png b/Angular4_CLI_Starter/src/assets/img/flags/Hungary.png deleted file mode 100755 index af757c6c6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Hungary.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Iceland.png b/Angular4_CLI_Starter/src/assets/img/flags/Iceland.png deleted file mode 100755 index 33d68ddfb..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Iceland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/India.png b/Angular4_CLI_Starter/src/assets/img/flags/India.png deleted file mode 100755 index e0a8865f0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/India.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Indonezia.png b/Angular4_CLI_Starter/src/assets/img/flags/Indonezia.png deleted file mode 100755 index ed42d1f98..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Indonezia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Iran.png b/Angular4_CLI_Starter/src/assets/img/flags/Iran.png deleted file mode 100755 index 70da4fcd2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Iran.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Iraq.png b/Angular4_CLI_Starter/src/assets/img/flags/Iraq.png deleted file mode 100755 index cdd0c4fef..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Iraq.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Ireland.png b/Angular4_CLI_Starter/src/assets/img/flags/Ireland.png deleted file mode 100755 index 74219ab83..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Ireland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Islamic Conference.png b/Angular4_CLI_Starter/src/assets/img/flags/Islamic Conference.png deleted file mode 100755 index cc4aa3b36..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Islamic Conference.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Isle of Man.png b/Angular4_CLI_Starter/src/assets/img/flags/Isle of Man.png deleted file mode 100755 index 9478023cc..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Isle of Man.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Israel.png b/Angular4_CLI_Starter/src/assets/img/flags/Israel.png deleted file mode 100755 index 3ba7553d3..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Israel.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Italy.png b/Angular4_CLI_Starter/src/assets/img/flags/Italy.png deleted file mode 100755 index c31017efa..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Italy.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Jamaica.png b/Angular4_CLI_Starter/src/assets/img/flags/Jamaica.png deleted file mode 100755 index e79cf2a89..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Jamaica.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Japan.png b/Angular4_CLI_Starter/src/assets/img/flags/Japan.png deleted file mode 100755 index 29c45d586..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Japan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Jersey.png b/Angular4_CLI_Starter/src/assets/img/flags/Jersey.png deleted file mode 100755 index b8f5ba6c7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Jersey.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Jordan.png b/Angular4_CLI_Starter/src/assets/img/flags/Jordan.png deleted file mode 100755 index b627a5c9f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Jordan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Kazakhstan.png b/Angular4_CLI_Starter/src/assets/img/flags/Kazakhstan.png deleted file mode 100755 index 8980ad96e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Kazakhstan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Kenya.png b/Angular4_CLI_Starter/src/assets/img/flags/Kenya.png deleted file mode 100755 index e3d7f12d7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Kenya.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Kiribati.png b/Angular4_CLI_Starter/src/assets/img/flags/Kiribati.png deleted file mode 100755 index 5d286d257..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Kiribati.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Kosovo.png b/Angular4_CLI_Starter/src/assets/img/flags/Kosovo.png deleted file mode 100755 index 1d4628640..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Kosovo.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Kuwait.png b/Angular4_CLI_Starter/src/assets/img/flags/Kuwait.png deleted file mode 100755 index 8d7adb1a6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Kuwait.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Kyrgyzstan.png b/Angular4_CLI_Starter/src/assets/img/flags/Kyrgyzstan.png deleted file mode 100755 index cf2d885fe..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Kyrgyzstan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Laos.png b/Angular4_CLI_Starter/src/assets/img/flags/Laos.png deleted file mode 100755 index f3b23092a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Laos.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Latvia.png b/Angular4_CLI_Starter/src/assets/img/flags/Latvia.png deleted file mode 100755 index 6ace36d12..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Latvia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Lebanon.png b/Angular4_CLI_Starter/src/assets/img/flags/Lebanon.png deleted file mode 100755 index 854717e9a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Lebanon.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Lesotho.png b/Angular4_CLI_Starter/src/assets/img/flags/Lesotho.png deleted file mode 100755 index 9af5c4a17..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Lesotho.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Liberia.png b/Angular4_CLI_Starter/src/assets/img/flags/Liberia.png deleted file mode 100755 index cadfec1df..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Liberia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Libya.png b/Angular4_CLI_Starter/src/assets/img/flags/Libya.png deleted file mode 100755 index 8176ad522..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Libya.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Liechtenshein.png b/Angular4_CLI_Starter/src/assets/img/flags/Liechtenshein.png deleted file mode 100755 index 4661f3dd6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Liechtenshein.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Lithuania.png b/Angular4_CLI_Starter/src/assets/img/flags/Lithuania.png deleted file mode 100755 index 875dd3f90..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Lithuania.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Luxembourg.png b/Angular4_CLI_Starter/src/assets/img/flags/Luxembourg.png deleted file mode 100755 index cef746a46..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Luxembourg.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Macao.png b/Angular4_CLI_Starter/src/assets/img/flags/Macao.png deleted file mode 100755 index e413fa5ad..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Macao.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Macedonia.png b/Angular4_CLI_Starter/src/assets/img/flags/Macedonia.png deleted file mode 100755 index 0bc91513d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Macedonia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Madagascar.png b/Angular4_CLI_Starter/src/assets/img/flags/Madagascar.png deleted file mode 100755 index 31e6d84ce..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Madagascar.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Malawi.png b/Angular4_CLI_Starter/src/assets/img/flags/Malawi.png deleted file mode 100755 index b96d0ad28..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Malawi.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Malaysia.png b/Angular4_CLI_Starter/src/assets/img/flags/Malaysia.png deleted file mode 100755 index 92686c29e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Malaysia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Maldives.png b/Angular4_CLI_Starter/src/assets/img/flags/Maldives.png deleted file mode 100755 index 92472ec8d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Maldives.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Mali.png b/Angular4_CLI_Starter/src/assets/img/flags/Mali.png deleted file mode 100755 index 189bff7f8..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Mali.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Malta.png b/Angular4_CLI_Starter/src/assets/img/flags/Malta.png deleted file mode 100755 index a93f9eefc..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Malta.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Marshall Islands.png b/Angular4_CLI_Starter/src/assets/img/flags/Marshall Islands.png deleted file mode 100755 index 1d158692f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Marshall Islands.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Martinique.png b/Angular4_CLI_Starter/src/assets/img/flags/Martinique.png deleted file mode 100755 index f2b7be412..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Martinique.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Mauritania.png b/Angular4_CLI_Starter/src/assets/img/flags/Mauritania.png deleted file mode 100755 index fcf1b44bc..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Mauritania.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Mauritius.png b/Angular4_CLI_Starter/src/assets/img/flags/Mauritius.png deleted file mode 100755 index e4c0b7d8a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Mauritius.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Mexico.png b/Angular4_CLI_Starter/src/assets/img/flags/Mexico.png deleted file mode 100755 index f0557d0d2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Mexico.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Micronesia.png b/Angular4_CLI_Starter/src/assets/img/flags/Micronesia.png deleted file mode 100755 index 02cf42457..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Micronesia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Moldova.png b/Angular4_CLI_Starter/src/assets/img/flags/Moldova.png deleted file mode 100755 index 344855ae4..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Moldova.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Monaco.png b/Angular4_CLI_Starter/src/assets/img/flags/Monaco.png deleted file mode 100755 index bda53b1d4..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Monaco.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Mongolia.png b/Angular4_CLI_Starter/src/assets/img/flags/Mongolia.png deleted file mode 100755 index 83b75425d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Mongolia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Montenegro.png b/Angular4_CLI_Starter/src/assets/img/flags/Montenegro.png deleted file mode 100755 index 514291844..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Montenegro.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Montserrat.png b/Angular4_CLI_Starter/src/assets/img/flags/Montserrat.png deleted file mode 100755 index a799545d7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Montserrat.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Morocco.png b/Angular4_CLI_Starter/src/assets/img/flags/Morocco.png deleted file mode 100755 index c1bb97073..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Morocco.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Mozambique.png b/Angular4_CLI_Starter/src/assets/img/flags/Mozambique.png deleted file mode 100755 index 07c0a8a94..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Mozambique.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Myanmar(Burma).png b/Angular4_CLI_Starter/src/assets/img/flags/Myanmar(Burma).png deleted file mode 100755 index 2deafe189..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Myanmar(Burma).png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/NATO.png b/Angular4_CLI_Starter/src/assets/img/flags/NATO.png deleted file mode 100755 index d651f063a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/NATO.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Namibia.png b/Angular4_CLI_Starter/src/assets/img/flags/Namibia.png deleted file mode 100755 index 9d14ed358..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Namibia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Nauru.png b/Angular4_CLI_Starter/src/assets/img/flags/Nauru.png deleted file mode 100755 index f763397ce..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Nauru.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Nepal.png b/Angular4_CLI_Starter/src/assets/img/flags/Nepal.png deleted file mode 100755 index f011adc43..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Nepal.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Netherlands Antilles.png b/Angular4_CLI_Starter/src/assets/img/flags/Netherlands Antilles.png deleted file mode 100755 index e4f171fd0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Netherlands Antilles.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Netherlands.png b/Angular4_CLI_Starter/src/assets/img/flags/Netherlands.png deleted file mode 100755 index d5ea76870..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Netherlands.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/New Caledonia.png b/Angular4_CLI_Starter/src/assets/img/flags/New Caledonia.png deleted file mode 100755 index dc3e9e100..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/New Caledonia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/New Zealand.png b/Angular4_CLI_Starter/src/assets/img/flags/New Zealand.png deleted file mode 100755 index ef474ad14..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/New Zealand.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Nicaragua.png b/Angular4_CLI_Starter/src/assets/img/flags/Nicaragua.png deleted file mode 100755 index ad8ab4403..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Nicaragua.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Niger.png b/Angular4_CLI_Starter/src/assets/img/flags/Niger.png deleted file mode 100755 index 06a7c0892..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Niger.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Nigeria.png b/Angular4_CLI_Starter/src/assets/img/flags/Nigeria.png deleted file mode 100755 index 899e0be6b..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Nigeria.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/North Korea.png b/Angular4_CLI_Starter/src/assets/img/flags/North Korea.png deleted file mode 100755 index f51a2bf8f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/North Korea.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Northern Cyprus.png b/Angular4_CLI_Starter/src/assets/img/flags/Northern Cyprus.png deleted file mode 100755 index cb346570d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Northern Cyprus.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Northern Ireland.png b/Angular4_CLI_Starter/src/assets/img/flags/Northern Ireland.png deleted file mode 100755 index c0eafdf3c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Northern Ireland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Norway.png b/Angular4_CLI_Starter/src/assets/img/flags/Norway.png deleted file mode 100755 index 2b03236fc..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Norway.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/OPEC.png b/Angular4_CLI_Starter/src/assets/img/flags/OPEC.png deleted file mode 100755 index 5d9c242c6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/OPEC.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Olimpic Movement.png b/Angular4_CLI_Starter/src/assets/img/flags/Olimpic Movement.png deleted file mode 100755 index 71d97aefb..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Olimpic Movement.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Oman.png b/Angular4_CLI_Starter/src/assets/img/flags/Oman.png deleted file mode 100755 index 111b1149a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Oman.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Pakistan.png b/Angular4_CLI_Starter/src/assets/img/flags/Pakistan.png deleted file mode 100755 index 1630f5519..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Pakistan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Palau.png b/Angular4_CLI_Starter/src/assets/img/flags/Palau.png deleted file mode 100755 index 21a45c4c4..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Palau.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Palestine.png b/Angular4_CLI_Starter/src/assets/img/flags/Palestine.png deleted file mode 100755 index 6f654e311..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Palestine.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Panama.png b/Angular4_CLI_Starter/src/assets/img/flags/Panama.png deleted file mode 100755 index e39849d7f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Panama.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Papua New Guinea.png b/Angular4_CLI_Starter/src/assets/img/flags/Papua New Guinea.png deleted file mode 100755 index 7b0d0eec4..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Papua New Guinea.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Paraguay.png b/Angular4_CLI_Starter/src/assets/img/flags/Paraguay.png deleted file mode 100755 index d8cc505ac..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Paraguay.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Peru.png b/Angular4_CLI_Starter/src/assets/img/flags/Peru.png deleted file mode 100755 index f971a354e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Peru.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Philippines.png b/Angular4_CLI_Starter/src/assets/img/flags/Philippines.png deleted file mode 100755 index d025d4d58..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Philippines.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Poland.png b/Angular4_CLI_Starter/src/assets/img/flags/Poland.png deleted file mode 100755 index 7a7180464..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Poland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Portugal.png b/Angular4_CLI_Starter/src/assets/img/flags/Portugal.png deleted file mode 100755 index 5b3907313..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Portugal.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Puerto Rico.png b/Angular4_CLI_Starter/src/assets/img/flags/Puerto Rico.png deleted file mode 100755 index 146ca81ee..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Puerto Rico.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Qatar.png b/Angular4_CLI_Starter/src/assets/img/flags/Qatar.png deleted file mode 100755 index 1dd118308..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Qatar.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Red Cross.png b/Angular4_CLI_Starter/src/assets/img/flags/Red Cross.png deleted file mode 100755 index fd7996724..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Red Cross.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Reunion.png b/Angular4_CLI_Starter/src/assets/img/flags/Reunion.png deleted file mode 100755 index 8087909f2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Reunion.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Romania.png b/Angular4_CLI_Starter/src/assets/img/flags/Romania.png deleted file mode 100755 index b8cdad8bf..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Romania.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Russia.png b/Angular4_CLI_Starter/src/assets/img/flags/Russia.png deleted file mode 100755 index a5b952854..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Russia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Rwanda.png b/Angular4_CLI_Starter/src/assets/img/flags/Rwanda.png deleted file mode 100755 index f6f516354..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Rwanda.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Saint Lucia.png b/Angular4_CLI_Starter/src/assets/img/flags/Saint Lucia.png deleted file mode 100755 index 987e1f0fa..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Saint Lucia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Samoa.png b/Angular4_CLI_Starter/src/assets/img/flags/Samoa.png deleted file mode 100755 index e671ebb63..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Samoa.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/San Marino.png b/Angular4_CLI_Starter/src/assets/img/flags/San Marino.png deleted file mode 100755 index 92bd72b6f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/San Marino.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Sao Tome & Principe.png b/Angular4_CLI_Starter/src/assets/img/flags/Sao Tome & Principe.png deleted file mode 100755 index b5187c6a6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Sao Tome & Principe.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Saudi Arabia.png b/Angular4_CLI_Starter/src/assets/img/flags/Saudi Arabia.png deleted file mode 100755 index 9630e83d5..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Saudi Arabia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Scotland.png b/Angular4_CLI_Starter/src/assets/img/flags/Scotland.png deleted file mode 100755 index 4ac5281d7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Scotland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Senegal.png b/Angular4_CLI_Starter/src/assets/img/flags/Senegal.png deleted file mode 100755 index 13c936532..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Senegal.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Serbia(Yugoslavia).png b/Angular4_CLI_Starter/src/assets/img/flags/Serbia(Yugoslavia).png deleted file mode 100755 index b2afcf5d2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Serbia(Yugoslavia).png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Seychelles.png b/Angular4_CLI_Starter/src/assets/img/flags/Seychelles.png deleted file mode 100755 index de605e600..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Seychelles.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Sierra Leone.png b/Angular4_CLI_Starter/src/assets/img/flags/Sierra Leone.png deleted file mode 100755 index 47b26eb5d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Sierra Leone.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Singapore.png b/Angular4_CLI_Starter/src/assets/img/flags/Singapore.png deleted file mode 100755 index 4b887853c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Singapore.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Slovakia.png b/Angular4_CLI_Starter/src/assets/img/flags/Slovakia.png deleted file mode 100755 index 418c7869a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Slovakia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Slovenia.png b/Angular4_CLI_Starter/src/assets/img/flags/Slovenia.png deleted file mode 100755 index cfa83b547..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Slovenia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Solomon Islands.png b/Angular4_CLI_Starter/src/assets/img/flags/Solomon Islands.png deleted file mode 100755 index f1ffebb30..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Solomon Islands.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Somalia.png b/Angular4_CLI_Starter/src/assets/img/flags/Somalia.png deleted file mode 100755 index 6a02c72c7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Somalia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Somaliland.png b/Angular4_CLI_Starter/src/assets/img/flags/Somaliland.png deleted file mode 100755 index d44f58092..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Somaliland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/South Africa.png b/Angular4_CLI_Starter/src/assets/img/flags/South Africa.png deleted file mode 100755 index d1920decd..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/South Africa.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/South Korea.png b/Angular4_CLI_Starter/src/assets/img/flags/South Korea.png deleted file mode 100755 index 13e27e11d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/South Korea.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Spain.png b/Angular4_CLI_Starter/src/assets/img/flags/Spain.png deleted file mode 100755 index 38b66bc4a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Spain.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Sri Lanka.png b/Angular4_CLI_Starter/src/assets/img/flags/Sri Lanka.png deleted file mode 100755 index 2a7d92597..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Sri Lanka.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/St Kitts & Nevis.png b/Angular4_CLI_Starter/src/assets/img/flags/St Kitts & Nevis.png deleted file mode 100755 index 75f3ed291..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/St Kitts & Nevis.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/St Vincent & the Grenadines.png b/Angular4_CLI_Starter/src/assets/img/flags/St Vincent & the Grenadines.png deleted file mode 100755 index e63336016..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/St Vincent & the Grenadines.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Sudan.png b/Angular4_CLI_Starter/src/assets/img/flags/Sudan.png deleted file mode 100755 index 3a3798521..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Sudan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Suriname.png b/Angular4_CLI_Starter/src/assets/img/flags/Suriname.png deleted file mode 100755 index cb4a87ac2..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Suriname.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Swaziland.png b/Angular4_CLI_Starter/src/assets/img/flags/Swaziland.png deleted file mode 100755 index 3585ac097..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Swaziland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Sweden.png b/Angular4_CLI_Starter/src/assets/img/flags/Sweden.png deleted file mode 100755 index 2c9bd9dbf..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Sweden.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Switzerland.png b/Angular4_CLI_Starter/src/assets/img/flags/Switzerland.png deleted file mode 100755 index 223154d7e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Switzerland.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Syria.png b/Angular4_CLI_Starter/src/assets/img/flags/Syria.png deleted file mode 100755 index 0584c20db..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Syria.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Tahiti(French Polinesia).png b/Angular4_CLI_Starter/src/assets/img/flags/Tahiti(French Polinesia).png deleted file mode 100755 index cbc56d0a5..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Tahiti(French Polinesia).png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Taiwan.png b/Angular4_CLI_Starter/src/assets/img/flags/Taiwan.png deleted file mode 100755 index 956d85343..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Taiwan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Tajikistan.png b/Angular4_CLI_Starter/src/assets/img/flags/Tajikistan.png deleted file mode 100755 index 09a79072e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Tajikistan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Tanzania.png b/Angular4_CLI_Starter/src/assets/img/flags/Tanzania.png deleted file mode 100755 index f0e1f3957..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Tanzania.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Thailand.png b/Angular4_CLI_Starter/src/assets/img/flags/Thailand.png deleted file mode 100755 index 8f3b5e718..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Thailand.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Timor-Leste.png b/Angular4_CLI_Starter/src/assets/img/flags/Timor-Leste.png deleted file mode 100755 index 296fba0d3..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Timor-Leste.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Togo.png b/Angular4_CLI_Starter/src/assets/img/flags/Togo.png deleted file mode 100755 index 5a100b15d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Togo.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Tonga.png b/Angular4_CLI_Starter/src/assets/img/flags/Tonga.png deleted file mode 100755 index f62ba374a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Tonga.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Trinidad & Tobago.png b/Angular4_CLI_Starter/src/assets/img/flags/Trinidad & Tobago.png deleted file mode 100755 index cf8566036..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Trinidad & Tobago.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Tunisia.png b/Angular4_CLI_Starter/src/assets/img/flags/Tunisia.png deleted file mode 100755 index d867a5ef6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Tunisia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Turkey.png b/Angular4_CLI_Starter/src/assets/img/flags/Turkey.png deleted file mode 100755 index 0398e54dd..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Turkey.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Turkmenistan.png b/Angular4_CLI_Starter/src/assets/img/flags/Turkmenistan.png deleted file mode 100755 index e3c50edd6..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Turkmenistan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Turks and Caicos Islands.png b/Angular4_CLI_Starter/src/assets/img/flags/Turks and Caicos Islands.png deleted file mode 100755 index fc66ef017..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Turks and Caicos Islands.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Tuvalu.png b/Angular4_CLI_Starter/src/assets/img/flags/Tuvalu.png deleted file mode 100755 index 3a403a619..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Tuvalu.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/USA.png b/Angular4_CLI_Starter/src/assets/img/flags/USA.png deleted file mode 100755 index 48c448fc9..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/USA.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Uganda.png b/Angular4_CLI_Starter/src/assets/img/flags/Uganda.png deleted file mode 100755 index 744d39d9a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Uganda.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Ukraine.png b/Angular4_CLI_Starter/src/assets/img/flags/Ukraine.png deleted file mode 100755 index 78e4945cf..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Ukraine.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/United Arab Emirates.png b/Angular4_CLI_Starter/src/assets/img/flags/United Arab Emirates.png deleted file mode 100755 index 11613758f..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/United Arab Emirates.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/United Nations.png b/Angular4_CLI_Starter/src/assets/img/flags/United Nations.png deleted file mode 100755 index 6b5f6397a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/United Nations.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/United-Kingdom.png b/Angular4_CLI_Starter/src/assets/img/flags/United-Kingdom.png deleted file mode 100755 index 3853f5e19..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/United-Kingdom.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Uruguay.png b/Angular4_CLI_Starter/src/assets/img/flags/Uruguay.png deleted file mode 100755 index 0eddedc9c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Uruguay.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Uzbekistan.png b/Angular4_CLI_Starter/src/assets/img/flags/Uzbekistan.png deleted file mode 100755 index 97ade3f2c..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Uzbekistan.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Vanutau.png b/Angular4_CLI_Starter/src/assets/img/flags/Vanutau.png deleted file mode 100755 index ff6cbeff8..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Vanutau.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Vatican City.png b/Angular4_CLI_Starter/src/assets/img/flags/Vatican City.png deleted file mode 100755 index c344e8b6a..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Vatican City.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Venezuela.png b/Angular4_CLI_Starter/src/assets/img/flags/Venezuela.png deleted file mode 100755 index 8ba69c4f9..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Venezuela.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Viet Nam.png b/Angular4_CLI_Starter/src/assets/img/flags/Viet Nam.png deleted file mode 100755 index c9368df09..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Viet Nam.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Virgin Islands British.png b/Angular4_CLI_Starter/src/assets/img/flags/Virgin Islands British.png deleted file mode 100755 index eb22e44f5..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Virgin Islands British.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Virgin Islands US.png b/Angular4_CLI_Starter/src/assets/img/flags/Virgin Islands US.png deleted file mode 100755 index 13be8077d..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Virgin Islands US.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Wales.png b/Angular4_CLI_Starter/src/assets/img/flags/Wales.png deleted file mode 100755 index 3c493454e..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Wales.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Western Sahara.png b/Angular4_CLI_Starter/src/assets/img/flags/Western Sahara.png deleted file mode 100755 index 5eb501c87..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Western Sahara.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Yemen.png b/Angular4_CLI_Starter/src/assets/img/flags/Yemen.png deleted file mode 100755 index 987a212db..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Yemen.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Zambia.png b/Angular4_CLI_Starter/src/assets/img/flags/Zambia.png deleted file mode 100755 index 639c3ace7..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Zambia.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/flags/Zimbabwe.png b/Angular4_CLI_Starter/src/assets/img/flags/Zimbabwe.png deleted file mode 100755 index 39106df61..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/flags/Zimbabwe.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/logo-symbol.png b/Angular4_CLI_Starter/src/assets/img/logo-symbol.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/logo-symbol.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/assets/img/logo.png b/Angular4_CLI_Starter/src/assets/img/logo.png deleted file mode 100644 index 98a194634..000000000 Binary files a/Angular4_CLI_Starter/src/assets/img/logo.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/environments/environment.prod.ts b/Angular4_CLI_Starter/src/environments/environment.prod.ts deleted file mode 100644 index 3612073bc..000000000 --- a/Angular4_CLI_Starter/src/environments/environment.prod.ts +++ /dev/null @@ -1,3 +0,0 @@ -export const environment = { - production: true -}; diff --git a/Angular4_CLI_Starter/src/environments/environment.ts b/Angular4_CLI_Starter/src/environments/environment.ts deleted file mode 100644 index 00313f166..000000000 --- a/Angular4_CLI_Starter/src/environments/environment.ts +++ /dev/null @@ -1,8 +0,0 @@ -// The file contents for the current environment will overwrite these during build. -// The build system defaults to the dev environment which uses `environment.ts`, but if you do -// `ng build --env=prod` then `environment.prod.ts` will be used instead. -// The list of which env maps to which file can be found in `angular-cli.json`. - -export const environment = { - production: false -}; diff --git a/Angular4_CLI_Starter/src/favicon.ico b/Angular4_CLI_Starter/src/favicon.ico deleted file mode 100644 index 8081c7cea..000000000 Binary files a/Angular4_CLI_Starter/src/favicon.ico and /dev/null differ diff --git a/Angular4_CLI_Starter/src/img/favicon.png b/Angular4_CLI_Starter/src/img/favicon.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Starter/src/img/favicon.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/img/logo-symbol.png b/Angular4_CLI_Starter/src/img/logo-symbol.png deleted file mode 100644 index 7f62affe0..000000000 Binary files a/Angular4_CLI_Starter/src/img/logo-symbol.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/img/logo.png b/Angular4_CLI_Starter/src/img/logo.png deleted file mode 100644 index 98a194634..000000000 Binary files a/Angular4_CLI_Starter/src/img/logo.png and /dev/null differ diff --git a/Angular4_CLI_Starter/src/index.html b/Angular4_CLI_Starter/src/index.html deleted file mode 100644 index ca5f3c9f8..000000000 --- a/Angular4_CLI_Starter/src/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - CoreUI - Open Source Bootstrap Admin Template - - - - - - - - - - - - diff --git a/Angular4_CLI_Starter/src/main.ts b/Angular4_CLI_Starter/src/main.ts deleted file mode 100644 index a9ca1caf8..000000000 --- a/Angular4_CLI_Starter/src/main.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { enableProdMode } from '@angular/core'; -import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; - -import { AppModule } from './app/app.module'; -import { environment } from './environments/environment'; - -if (environment.production) { - enableProdMode(); -} - -platformBrowserDynamic().bootstrapModule(AppModule); diff --git a/Angular4_CLI_Starter/src/polyfills.ts b/Angular4_CLI_Starter/src/polyfills.ts deleted file mode 100644 index 41d3b9645..000000000 --- a/Angular4_CLI_Starter/src/polyfills.ts +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This file includes polyfills needed by Angular and is loaded before the app. - * You can add your own extra polyfills to this file. - * - * This file is divided into 2 sections: - * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. - * 2. Application imports. Files imported after ZoneJS that should be loaded before your main - * file. - * - * The current setup is for so-called "evergreen" browsers; the last versions of browsers that - * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), - * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. - * - * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html - */ - -/*************************************************************************************************** - * BROWSER POLYFILLS - */ - -/** IE9, IE10 and IE11 requires all of the following polyfills. **/ -import 'core-js/es6/symbol'; -import 'core-js/es6/object'; -import 'core-js/es6/function'; -import 'core-js/es6/parse-int'; -import 'core-js/es6/parse-float'; -import 'core-js/es6/number'; -import 'core-js/es6/math'; -import 'core-js/es6/string'; -import 'core-js/es6/date'; -import 'core-js/es6/array'; -import 'core-js/es6/regexp'; -import 'core-js/es6/map'; -import 'core-js/es6/set'; -import 'core-js/es6/reflect'; - -/** IE10 and IE11 requires the following for NgClass support on SVG elements */ -// import 'classlist.js'; // Run `npm install --save classlist.js`. - -/** IE10 and IE11 requires the following to support `@angular/animation`. */ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - - -/** Evergreen browsers require these. **/ -import 'core-js/es6/reflect'; -import 'core-js/es7/reflect'; - - -/** ALL Firefox browsers require the following to support `@angular/animation`. **/ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - - - -/*************************************************************************************************** - * Zone JS is required by Angular itself. - */ -import 'zone.js/dist/zone'; // Included with Angular CLI. - - - -/*************************************************************************************************** - * APPLICATION IMPORTS - */ - -/** - * Date, currency, decimal and percent pipes. - * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 - */ -// import 'intl'; // Run `npm install --save intl`. diff --git a/Angular4_CLI_Starter/src/scss/_bootstrap-variables.scss b/Angular4_CLI_Starter/src/scss/_bootstrap-variables.scss deleted file mode 100644 index 9a9c27210..000000000 --- a/Angular4_CLI_Starter/src/scss/_bootstrap-variables.scss +++ /dev/null @@ -1,109 +0,0 @@ -// Bootstrap overrides - -// -// Color system -// - -$white: #fff; -$gray-100: #f0f3f5; -$gray-200: #c2cfd6; -$gray-300: #a4b7c1; -$gray-400: #869fac; -$gray-500: #678898; -$gray-600: #536c79; -$gray-700: #3e515b; -$gray-800: #29363d; -$gray-900: #151b1e; -$black: #000 !default; - -$blue: #20a8d8; -$indigo: #6610f2 !default; -$purple: #6f42c1 !default; -$pink: #e83e8c !default; -$red: #f86c6b; -$orange: #f8cb00; -$yellow: #ffc107 !default; -$green: #4dbd74; -$teal: #20c997 !default; -$cyan: #63c2de; - -$colors: ( - blue: $blue, - indigo: $indigo, - purple: $purple, - pink: $pink, - red: $red, - orange: $orange, - yellow: $yellow, - green: $green, - teal: $teal, - cyan: $cyan, - white: $white, - gray: $gray-600, - gray-dark: $gray-800 -); - -$theme-colors: ( - primary: $blue, - secondary: $gray-300, - success: $green, - info: $cyan, - warning: $yellow, - danger: $red, - light: $gray-100, - dark: $gray-800 -); - -// Options -// -// Quickly modify global styling by enabling or disabling optional features. - -$enable-transitions: true; -$enable-rounded: false; - -// Body -// -// Settings for the `` element. - -$body-bg: #e4e5e6; - -// Typography -// -// Font, line-height, and color for body text, headings, and more. - -$font-size-base: 0.875rem; - -// Breadcrumbs - -$breadcrumb-bg: #fff; -$breadcrumb-margin-bottom: 1.5rem; - -// Cards - -$card-border-color: $gray-200; -$card-cap-bg: $gray-100; - -// Dropdowns - -$dropdown-padding-y: 0; -$dropdown-border-color: $gray-200; -$dropdown-divider-bg: $gray-100; - -// Buttons - -$btn-secondary-border: $gray-300; - -// Progress bars - -$progress-bg: $gray-100; - -// Tables - -$table-bg-accent: $gray-100; -$table-bg-hover: $gray-100; - -// Forms - -$input-group-addon-bg: $gray-100; -$input-border-color: $gray-200; -$input-group-addon-border-color: $gray-200; diff --git a/Angular4_CLI_Starter/src/scss/_core-variables.scss b/Angular4_CLI_Starter/src/scss/_core-variables.scss deleted file mode 100644 index 906e13ac3..000000000 --- a/Angular4_CLI_Starter/src/scss/_core-variables.scss +++ /dev/null @@ -1 +0,0 @@ -// core overrides diff --git a/Angular4_CLI_Starter/src/scss/_custom.scss b/Angular4_CLI_Starter/src/scss/_custom.scss deleted file mode 100644 index 15d367af4..000000000 --- a/Angular4_CLI_Starter/src/scss/_custom.scss +++ /dev/null @@ -1 +0,0 @@ -// Here you can add other styles diff --git a/Angular4_CLI_Starter/src/scss/core/_animate.scss b/Angular4_CLI_Starter/src/scss/core/_animate.scss deleted file mode 100644 index c0a244bae..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_animate.scss +++ /dev/null @@ -1,27 +0,0 @@ -// scss-lint:disable all -.animated { - animation-duration: 1s; - // animation-fill-mode: both; -} - -.animated.infinite { - animation-iteration-count: infinite; -} - -.animated.hinge { - animation-duration: 2s; -} - -@keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -.fadeIn { - animation-name: fadeIn; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_aside.scss b/Angular4_CLI_Starter/src/scss/core/_aside.scss deleted file mode 100644 index fc71e42c6..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_aside.scss +++ /dev/null @@ -1,64 +0,0 @@ -.aside-menu { - z-index: $zindex-sticky - 1; - width: $aside-menu-width; - color: $aside-menu-color; - background: $aside-menu-bg; - @include borders($aside-menu-borders); - - .nav-tabs { - border-color: $border-color; - .nav-link { - padding: $aside-menu-nav-padding-y $aside-menu-nav-padding-x; - color: $body-color; - border-top: 0; - &.active { - color: theme-color("primary"); - border-right-color: $border-color; - border-left-color: $border-color; - } - } - .nav-item:first-child { - .nav-link { - border-left: 0; - } - } - } - - .tab-content { - position: relative; - overflow-x: hidden; - overflow-y: auto; - border: 0; - border-top: 1px solid $border-color; - -ms-overflow-style: -ms-autohiding-scrollbar; - - &::-webkit-scrollbar { - width: 10px; - margin-left: -10px; - -webkit-appearance: none; - } - - // &::-webkit-scrollbar-button { } - - &::-webkit-scrollbar-track { - background-color: lighten($aside-menu-bg, 5%); - border-right: 1px solid darken($aside-menu-bg, 5%); - border-left: 1px solid darken($aside-menu-bg, 5%); - } - - // &::-webkit-scrollbar-track-piece { } - - &::-webkit-scrollbar-thumb { - height: 50px; - background-color: darken($aside-menu-bg, 10%); - background-clip: content-box; - border-color: transparent; - border-style: solid; - border-width: 1px 2px; - } - - .tab-pane { - padding: 0; - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_avatars.scss b/Angular4_CLI_Starter/src/scss/core/_avatars.scss deleted file mode 100644 index 623016ef0..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_avatars.scss +++ /dev/null @@ -1,51 +0,0 @@ -.img-avatar { - border-radius: 50em; -} - -.avatar { - $width: 36px; - $status-width: 10px; - @include avatar($width,$status-width); -} - -.avatar.avatar-xs { - $width: 20px; - $status-width: 8px; - @include avatar($width,$status-width); -} - -.avatar.avatar-sm { - $width: 24px; - $status-width: 8px; - @include avatar($width,$status-width); -} - -.avatar.avatar-lg { - $width: 72px; - $status-width: 12px; - @include avatar($width,$status-width); -} - -.avatars-stack { - .avatar.avatar-xs { - margin-right: -10px; - } - - // .avatar.avatar-sm { - // - // } - - .avatar { - margin-right: -15px; - transition: margin-left $layout-transition-speed, margin-right $layout-transition-speed; - - &:hover { - margin-right: 0 !important; - } - } - - // .avatar.avatar-lg { - // - // } - -} diff --git a/Angular4_CLI_Starter/src/scss/core/_badge.scss b/Angular4_CLI_Starter/src/scss/core/_badge.scss deleted file mode 100644 index 310488562..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_badge.scss +++ /dev/null @@ -1,3 +0,0 @@ -.badge-pill { - border-radius: $badge-pill-border-radius; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_breadcrumb-menu.scss b/Angular4_CLI_Starter/src/scss/core/_breadcrumb-menu.scss deleted file mode 100644 index dbbe07e0b..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_breadcrumb-menu.scss +++ /dev/null @@ -1,35 +0,0 @@ -.breadcrumb-menu { - margin-left: auto; - - &::before { - display: none; - } - - .btn-group { - vertical-align: top; - } - - .btn { - padding: 0 $input-btn-padding-x; - color: $text-muted; - vertical-align: top; - border: 0; - - &:hover, &.active { - color: $body-color; - background: transparent; - } - } - - .open { - .btn { - color: $body-color; - background: transparent; - } - } - - .dropdown-menu { - min-width: 180px; - line-height: $line-height-base; - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_breadcrumb.scss b/Angular4_CLI_Starter/src/scss/core/_breadcrumb.scss deleted file mode 100644 index d8a003dc6..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_breadcrumb.scss +++ /dev/null @@ -1,4 +0,0 @@ -.breadcrumb { - position: relative; - @include borders($breadcrumb-borders); -} diff --git a/Angular4_CLI_Starter/src/scss/core/_buttons.scss b/Angular4_CLI_Starter/src/scss/core/_buttons.scss deleted file mode 100644 index 7ab4953b9..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_buttons.scss +++ /dev/null @@ -1,575 +0,0 @@ -button { - cursor: pointer; -} - -.btn { - .badge { - position: absolute; - top: 2px; - right: 6px; - font-size: 9px; - } -} - -.btn-transparent { - color: #fff; - background-color: transparent; - border-color: transparent; -} - -.btn { - [class^="icon-"], [class*=" icon-"] { - display: inline-block; - margin-top: -2px; - vertical-align: middle; - } -} - -.btn-facebook, -.btn-twitter, -.btn-linkedin, -.btn-flickr, -.btn-tumblr, -.btn-xing, -.btn-github, -.btn-html5, -.btn-openid, -.btn-stack-overflow, -.btn-youtube, -.btn-css3, -.btn-dribbble, -.btn-google-plus, -.btn-instagram, -.btn-pinterest, -.btn-vk, -.btn-yahoo, -.btn-behance, -.btn-dropbox, -.btn-reddit, -.btn-spotify, -.btn-vine, -.btn-foursquare, -.btn-vimeo { - position: relative; - overflow: hidden; - color: #fff !important; - text-align: center; - - &::before { - position: absolute; - top: 0; - left: 0; - display: block; - font-family: "FontAwesome"; - font-style: normal; - font-weight: normal; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - } - - &:hover { - color: #fff; - } - - &.icon { - - span { - display: none; - } - } - - &.text { - &::before { - display: none; - } - - span { - margin-left: 0 !important; - } - } - @include button-social-size($input-btn-padding-y, $input-btn-padding-x, $font-size-base, $line-height-base, $btn-border-radius); - - &.btn-lg { - @include button-social-size($input-btn-padding-y-lg, $input-btn-padding-x-lg, $font-size-lg, $line-height-lg, $btn-border-radius-lg); - } - - &.btn-sm { - @include button-social-size($input-btn-padding-y-sm, $input-btn-padding-x-sm, $font-size-sm, $line-height-sm, $btn-border-radius-sm); - } - -} - -.btn-facebook { - $color: $facebook; - - background: $color; - &::before { - content: "\f09a"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-twitter { - $color: $twitter; - - background: $color; - &::before { - content: "\f099"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-linkedin { - $color: $linkedin; - - background: $color; - &::before { - content: "\f0e1"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-flickr { - $color: $flickr; - - background: $color; - &::before { - content: "\f16e"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-tumblr { - $color: $tumblr; - - background: $color; - &::before { - content: "\f173"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-xing { - $color: $xing; - - background: $color; - &::before { - content: "\f168"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-github { - $color: $github; - - background: $color; - &::before { - content: "\f09b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-html5 { - $color: $html5; - - background: $color; - &::before { - content: "\f13b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-openid { - $color: $openid; - - background: $color; - &::before { - content: "\f19b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-stack-overflow { - $color: $stack-overflow; - - background: $color; - &::before { - content: "\f16c"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-css3 { - $color: $css3; - - background: $color; - &::before { - content: "\f13c"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-youtube { - $color: $youtube; - - background: $color; - &::before { - content: "\f167"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-dribbble { - $color: $dribbble; - - background: $color; - &::before { - content: "\f17d"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-google-plus { - $color: $google-plus; - - background: $color; - &::before { - content: "\f0d5"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-instagram { - $color: $instagram; - - background: $color; - &::before { - content: "\f16d"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-pinterest { - $color: $pinterest; - - background: $color; - &::before { - content: "\f0d2"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-vk { - $color: $vk; - - background: $color; - &::before { - content: "\f189"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-yahoo { - $color: $yahoo; - - background: $color; - &::before { - content: "\f19e"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-behance { - $color: $behance; - - background: $color; - &::before { - content: "\f1b4"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-dropbox { - $color: $dropbox; - - background: $color; - &::before { - content: "\f16b"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-reddit { - $color: $reddit; - - background: $color; - &::before { - content: "\f1a1"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-spotify { - $color: $spotify; - - background: $color; - &::before { - content: "\f1bc"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-vine { - $color: $vine; - - background: $color; - &::before { - content: "\f1ca"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-foursquare { - $color: $foursquare; - - background: $color; - &::before { - content: "\f180"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} - -.btn-vimeo { - $color: $vimeo; - - background: $color; - &::before { - content: "\f194"; - background: darken($color, 5%); - - } - - &:hover { - background: darken($color, 5%); - - &::before { - background: darken($color, 10%); - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_callout.scss b/Angular4_CLI_Starter/src/scss/core/_callout.scss deleted file mode 100644 index b98ebac53..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_callout.scss +++ /dev/null @@ -1,55 +0,0 @@ -.callout { - position: relative; - padding: 0 $spacer; - margin: $spacer 0; - border: 0 solid $border-color; - border-left-width: .25rem; - - @if $enable-rounded { - border-radius: .25rem; - } - - .chart-wrapper { - position: absolute; - top: 10px; - left: 50%; - float: right; - width: 50%; - } -} - -.callout-bordered { - border: 1px solid $border-color; - border-left-width: .25rem; -} -.callout code { - border-radius: .25rem; -} -.callout h4 { - margin-top: 0; - margin-bottom: .25rem; -} -.callout p:last-child { - margin-bottom: 0; -} -.callout + .callout { - margin-top: - .25rem; -} - -.callout-default { - border-left-color: $text-muted; - - h4 { - color: $text-muted; - } -} - -@each $color, $value in $theme-colors { - .callout-#{$color} { - border-left-color: $value; - - h4 { - color: $value; - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_card.scss b/Angular4_CLI_Starter/src/scss/core/_card.scss deleted file mode 100644 index 20e57a818..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_card.scss +++ /dev/null @@ -1,193 +0,0 @@ -.card { - margin-bottom: 1.5 * $spacer; - - // Cards with color accent - @each $color, $value in $theme-colors { - &.bg-#{$color} { - border-color: darken($value, 12.5%); - .card-header { - background-color: darken($value, 3%); - border-color: darken($value, 12.5%); - } - } - } -} - -.text-white .text-muted { - color: rgba(255,255,255,.6) !important; -} - -.card-header { - - .icon-bg { - display: inline-body; - padding: $card-spacer-y $card-spacer-x !important; - margin-top: -$card-spacer-y; - margin-right: $card-spacer-x; - margin-bottom: -$card-spacer-y; - margin-left: -$card-spacer-x; - line-height: inherit; - color: $card-icon-color; - vertical-align: bottom; - background: $card-icon-bg; - border-right: $card-border-width solid $card-border-color; - } - - .nav.nav-tabs { - margin-top: -$card-spacer-y; - margin-bottom: -$card-spacer-y; - border-bottom: 0; - - .nav-item { - border-top: 0; - } - - .nav-link { - padding: $card-spacer-y $card-spacer-x / 2; - color: $text-muted; - border-top: 0; - - &.active { - color: $body-color; - background: #fff; - } - } - } - - &.card-header-inverse { - color: #fff; - } - - .btn { - margin-top: - $input-btn-padding-y; - } - .btn-sm { - margin-top: - $input-btn-padding-y-sm; - } - .btn-lg { - margin-top: - $input-btn-padding-y-lg; - } -} -// -.card-footer { - - ul { - display: table; - width: 100%; - padding: 0; - margin: 0; - table-layout: fixed; - - li { - display: table-cell; - padding: 0 $card-spacer-x; - text-align: center; - } - } -} - -[class*="card-outline-"] { - .card-body { - background: #fff !important; - } - - &.card-outline-top { - border-top-width: 2px; - border-right-color: $border-color; - border-bottom-color: $border-color; - border-left-color: $border-color; - } -} - -// Cards with color accent -@each $color, $value in $theme-colors { - .card-accent-#{$color} { - @include card-accent-variant($value); - } -} - -// Card Actions -.card-header { - > i { - margin-right: $spacer / 2; - } - .card-actions { - position: absolute; - top: 0; - right: 0; - //height: inherit; - - a, button { - display: block; - float: left; - width: 50px; - padding: $card-spacer-y 0; - margin: 0 !important; - color: $body-color; - text-align: center; - background: transparent; - border: 0; - border-left: 1px solid $border-color; - box-shadow: 0; - - &:hover { - text-decoration: none; - } - - [class^="icon-"], [class*=" icon-"] { - display: inline-body; - vertical-align: middle; - } - - i { - display: inline-body; - transition: .4s; - } - - .r180 { - transform: rotate(180deg); - } - } - - .input-group { - width: 230px; - margin: 6px; - - .input-group-addon { - background: #fff; - } - - input { - border-left: 0; - } - } - } -} - -.card-full { - margin-top: - $spacer; - margin-right: - $grid-gutter-width / 2; - margin-left: - $grid-gutter-width / 2; - border: 0; - border-bottom: $card-border-width solid $border-color; -} - -@include media-breakpoint-up(sm) { - .card-columns { - - &.cols-2 { - column-count: 2; - } - } -} - -.card { - &.drag, .drag { - cursor: move; - } -} - -.card-placeholder { - background: rgba(0,0,0,.025); - border: 1px dashed $gray-300; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_charts.scss b/Angular4_CLI_Starter/src/scss/core/_charts.scss deleted file mode 100644 index 0e7a3c2ab..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_charts.scss +++ /dev/null @@ -1,9 +0,0 @@ -.chart-wrapper { - canvas { - width: 100% !important; - } -} -// scss-lint:disable QualifyingElement -base-chart.chart { - display: block !important; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_dropdown-menu-right.scss b/Angular4_CLI_Starter/src/scss/core/_dropdown-menu-right.scss deleted file mode 100644 index 4f1954681..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_dropdown-menu-right.scss +++ /dev/null @@ -1,8 +0,0 @@ -// Temp fix for reactstrap -.app-header { - .navbar-nav { - .dropdown-menu-right { - right: auto; - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_dropdown.scss b/Angular4_CLI_Starter/src/scss/core/_dropdown.scss deleted file mode 100644 index 564e4df20..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_dropdown.scss +++ /dev/null @@ -1,69 +0,0 @@ -// Links, buttons, and more within the dropdown menu -.dropdown-item { - position: relative; - padding: 10px 20px; - border-bottom: 1px solid $dropdown-border-color; - - &:last-child { - border-bottom: 0; - } - - i { - display: inline-block; - width: 20px; - margin-right: 10px; - margin-left: -10px; - color: $dropdown-border-color; - text-align: center; - } - - .badge { - position: absolute; - right: 10px; - margin-top: 2px; - } -} - -// Dropdown section headers -.dropdown-header { - padding: 8px 20px; - background: $dropdown-divider-bg; - border-bottom: 1px solid $dropdown-border-color; - - .btn { - margin-top: -7px; - color: $dropdown-header-color; - - &:hover { - color: $body-color; - } - - &.pull-right { - margin-right: -20px; - } - } -} - -.dropdown-menu-lg { - width: 250px; -} -.app-header { - .navbar-nav { - .dropdown-menu { - position: absolute; - } - // Menu positioning - // - // Add extra class to `.dropdown-menu` to flip the alignment of the dropdown - // menu with the parent. - .dropdown-menu-right { - right: 0; - left: auto; // Reset the default from `.dropdown-menu` - } - - .dropdown-menu-left { - right: auto; - left: 0; - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_footer.scss b/Angular4_CLI_Starter/src/scss/core/_footer.scss deleted file mode 100644 index e01595a1b..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_footer.scss +++ /dev/null @@ -1,9 +0,0 @@ -.app-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - padding: 0 $spacer; - color: $footer-color; - background: $footer-bg; - @include borders($footer-borders); -} diff --git a/Angular4_CLI_Starter/src/scss/core/_grid.scss b/Angular4_CLI_Starter/src/scss/core/_grid.scss deleted file mode 100644 index 0d0963c17..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_grid.scss +++ /dev/null @@ -1,15 +0,0 @@ -.row.row-equal { - padding-right: ($grid-gutter-width / 4); - padding-left: ($grid-gutter-width / 4); - margin-right: ($grid-gutter-width / -2); - margin-left: ($grid-gutter-width / -2); - - [class*="col-"] { - padding-right: ($grid-gutter-width / 4); - padding-left: ($grid-gutter-width / 4); - } -} - -.main .container-fluid { - padding: 0 30px; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_input-group.scss b/Angular4_CLI_Starter/src/scss/core/_input-group.scss deleted file mode 100644 index 23b25122c..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_input-group.scss +++ /dev/null @@ -1,6 +0,0 @@ -.input-group-addon, -.input-group-btn { - min-width: 40px; - white-space: nowrap; - vertical-align: middle; // Match the inputs -} diff --git a/Angular4_CLI_Starter/src/scss/core/_layout.scss b/Angular4_CLI_Starter/src/scss/core/_layout.scss deleted file mode 100644 index 8a050031e..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_layout.scss +++ /dev/null @@ -1,384 +0,0 @@ -// IE10&11 Flexbox fix -@media all and (-ms-high-contrast:none) { - html { - display: flex; - flex-direction: column; - } -} - -// app-dashboard and app-root are Angular2+ selectors. You can add here your own selectors if you need. -.app, -app-dashboard, -app-root { - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.app-header { - flex: 0 0 $navbar-height; -} - -.app-footer { - flex: 0 0 $footer-height; -} - -.app-body { - display: flex; - flex-direction: row; - flex-grow: 1; - overflow-x: hidden; - - .main { - flex: 1; - min-width: 0; - } - - .sidebar { - // $sidebar-width is the width of the columns - flex: 0 0 $sidebar-width; - // put the nav on the left - order: -1; - } - - .aside-menu { - // $aside-menu-width is the width of the columns - flex: 0 0 $aside-menu-width; - } -} - -// -// header -// -.header-fixed { - .app-header { - position: fixed; - z-index: $zindex-sticky; - width: 100%; - } - .app-body { - margin-top: $navbar-height; - } -} - -// -// Sidebar -// -.sidebar-hidden { - .sidebar { - margin-left: - $sidebar-width; - } -} - -.sidebar-fixed { - .sidebar { - position: fixed; - z-index: $zindex-sticky - 1; - width: $sidebar-width; - height: calc(100vh - #{$navbar-height}); - // margin-top: - $navbar-height; - - // .sidebar-nav { - // height: calc(100vh - #{$navbar-height}); - // } - } - - .main, .app-footer { - margin-left: $sidebar-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } -} - -.sidebar-off-canvas { - .sidebar { - position: fixed; - z-index: $zindex-sticky - 1; - height: calc(100vh - #{$navbar-height}); - } -} - -@include media-breakpoint-up(lg) { - .sidebar-compact { - .sidebar { - flex: 0 0 $sidebar-compact-width; - } - - &.sidebar-hidden { - .sidebar { - margin-left: - $sidebar-compact-width; - } - } - - &.sidebar-fixed { - .main, .app-footer { - margin-left: $sidebar-compact-width; - } - - .sidebar { - width: $sidebar-compact-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - } - - .sidebar-minimized { - .sidebar { - flex: 0 0 $sidebar-minimized-width; - } - - &.sidebar-hidden { - .sidebar { - margin-left: - $sidebar-minimized-width; - } - } - - &.sidebar-fixed { - .main, .app-footer { - margin-left: $sidebar-minimized-width; - } - - .sidebar { - width: $sidebar-minimized-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - } -} - -// -// Aside Menu -// -.aside-menu-hidden { - .aside-menu { - margin-right: - $aside-menu-width; - } -} - -.aside-menu-fixed { - .aside-menu { - position: fixed; - right: 0; - height: 100%; - - .tab-content { - height: calc(100vh - #{$aside-menu-nav-padding-y * 2 + $font-size-base} - #{$navbar-height}); - } - } - - .main, .app-footer { - margin-right: $aside-menu-width; - } - - &.aside-menu-hidden { - .main, .app-footer { - margin-right: 0; - } - } -} - -.aside-menu-off-canvas { - .aside-menu { - position: fixed; - right: 0; - z-index: $zindex-sticky - 1; - height: 100%; - - .tab-content { - height: calc(100vh - #{$aside-menu-nav-padding-y * 2 + $font-size-base} - #{$navbar-height}); - } - } -} - -// -// Breadcrumb -// -.breadcrumb-fixed { - .main { - $breadcrumb-height: 2 * $breadcrumb-padding-y + $font-size-base + 1.5 * $spacer; - padding-top: $breadcrumb-height; - } - - .breadcrumb { - position: fixed; - top: $navbar-height; - right: 0; - left: 0; - z-index: $zindex-sticky - 2; - } - - // if sidebar + main + aside - .main:nth-child(2) { - .breadcrumb { - right: $aside-menu-width; - left: $sidebar-width; - } - } - - // if sidebar + main - .main:first-child { - .breadcrumb { - right: $aside-menu-width; - left: 0; - } - } - - // if main + aside - .main:last-child { - .breadcrumb { - right: 0; - } - } - - &.sidebar-minimized { - .main .breadcrumb { - left: $sidebar-minimized-width; - } - } - - &.sidebar-hidden, &.sidebar-off-canvas { - .main .breadcrumb { - left: 0; - } - } - - &.aside-menu-hidden, &.aside-menu-off-canvas { - .main .breadcrumb { - right: 0; - } - } -} - -// -// Footer -// -.footer-fixed { - .app-footer { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: $zindex-sticky; - height: $footer-height; - } - - .app-body { - margin-bottom: $footer-height; - } -} - -// -// Animations -// -.app-header, -.app-footer, -.sidebar, -.main, -.aside-menu { - transition: margin-left $layout-transition-speed, margin-right $layout-transition-speed, width $layout-transition-speed, flex $layout-transition-speed; -} -.sidebar-nav { - transition: width $layout-transition-speed; -} -.breadcrumb { - transition: left $layout-transition-speed, right $layout-transition-speed, width $layout-transition-speed; -} - -// -// Mobile layout -// - -@include media-breakpoint-down(md) { - .app-header.navbar { - position: fixed !important; - z-index: $zindex-sticky; - width: 100%; - text-align: center; - background-color: $navbar-brand-bg; - @include borders($navbar-brand-border); - - .navbar-toggler { - @if (lightness( $navbar-brand-bg ) > 40) { - color: $navbar-color; - } @else { - color: #fff; - } - } - - .navbar-brand { - position: absolute; - left: 50%; - margin-left: - ($navbar-brand-width / 2); - } - } - - .app-body { - margin-top: $navbar-height; - } - - .breadcrumb-fixed { - .main:nth-child(2) .breadcrumb { - right: auto; - left: auto; - width: 100%; - } - } - - .sidebar { - position: fixed; - z-index: $zindex-sticky - 1; - width: $mobile-sidebar-width; - height: calc(100vh - #{$navbar-height}); - margin-left: - $mobile-sidebar-width; - - .sidebar-nav, - .nav { - width: $mobile-sidebar-width; - min-height: calc(100vh - #{$navbar-height}); - } - - .sidebar-minimizer { - display: none; - } - } - - .main, .app-footer { - margin-left: 0 !important; - } - - // .aside-menu { - // margin-right: - $aside-menu-width; - // } - - .sidebar-hidden { - .sidebar { - margin-left: - $mobile-sidebar-width; - } - } - - .sidebar-mobile-show { - .sidebar { - width: $mobile-sidebar-width; - margin-left: 0; - } - - .main { - margin-right: - $mobile-sidebar-width !important; - margin-left: $mobile-sidebar-width !important; - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_loading.scss b/Angular4_CLI_Starter/src/scss/core/_loading.scss deleted file mode 100644 index 3e409fb7d..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_loading.scss +++ /dev/null @@ -1,128 +0,0 @@ -// Angular Version -// Make clicks pass-through -// scss-lint:disable all -#loading-bar, -#loading-bar-spinner { - -webkit-pointer-events: none; - pointer-events: none; - -moz-transition: 350ms linear all; - -o-transition: 350ms linear all; - -webkit-transition: 350ms linear all; - transition: 350ms linear all; -} - -#loading-bar.ng-enter, -#loading-bar.ng-leave.ng-leave-active, -#loading-bar-spinner.ng-enter, -#loading-bar-spinner.ng-leave.ng-leave-active { - opacity: 0; -} - -#loading-bar.ng-enter.ng-enter-active, -#loading-bar.ng-leave, -#loading-bar-spinner.ng-enter.ng-enter-active, -#loading-bar-spinner.ng-leave { - opacity: 1; -} - -#loading-bar .bar { - position: fixed; - top: 0; - left: 0; - z-index: 20002; - width: 100%; - height: 2px; - background: theme-color("primary"); - border-top-right-radius: 1px; - border-bottom-right-radius: 1px; - -moz-transition: width 350ms; - -o-transition: width 350ms; - -webkit-transition: width 350ms; - transition: width 350ms; -} - -// Fancy blur effect -#loading-bar .peg { - position: absolute; - top: 0; - right: 0; - width: 70px; - height: 2px; - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; - -moz-box-shadow: #29d 1px 0 6px 1px; - -ms-box-shadow: #29d 1px 0 6px 1px; - -webkit-box-shadow: #29d 1px 0 6px 1px; - box-shadow: #29d 1px 0 6px 1px; - opacity: .45; -} - -#loading-bar-spinner { - position: fixed; - top: 10px; - left: 10px; - z-index: 10002; - display: block; -} - -#loading-bar-spinner .spinner-icon { - width: 14px; - height: 14px; - - border: solid 2px transparent; - border-top-color: #29d; - border-left-color: #29d; - border-radius: 50%; - - -moz-animation: loading-bar-spinner 400ms linear infinite; - -ms-animation: loading-bar-spinner 400ms linear infinite; - -o-animation: loading-bar-spinner 400ms linear infinite; - -webkit-animation: loading-bar-spinner 400ms linear infinite; - animation: loading-bar-spinner 400ms linear infinite; -} - -@-webkit-keyframes loading-bar-spinner { - 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } -} -@-moz-keyframes loading-bar-spinner { - 0% { -moz-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -moz-transform: rotate(360deg); transform: rotate(360deg); } -} -@-o-keyframes loading-bar-spinner { - 0% { -o-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -o-transform: rotate(360deg); transform: rotate(360deg); } -} -@-ms-keyframes loading-bar-spinner { - 0% { -ms-transform: rotate(0deg); transform: rotate(0deg); } - 100% { -ms-transform: rotate(360deg); transform: rotate(360deg); } -} -@keyframes loading-bar-spinner { - 0% { transform: rotate(0deg); transform: rotate(0deg); } - 100% { transform: rotate(360deg); transform: rotate(360deg); } -} - -//Ajax & Static Version -.pace { - -webkit-pointer-events: none; - pointer-events: none; - - -moz-user-select: none; - -webkit-user-select: none; - user-select: none; -} - -.pace-inactive { - display: none; -} - -.pace .pace-progress { - position: fixed; - top: 0; - right: 100%; - z-index: 2000; - width: 100%; - height: 2px; - background: theme-color("primary"); -} diff --git a/Angular4_CLI_Starter/src/scss/core/_mixins.scss b/Angular4_CLI_Starter/src/scss/core/_mixins.scss deleted file mode 100644 index 153f1d394..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_mixins.scss +++ /dev/null @@ -1,116 +0,0 @@ -@mixin button-social-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { - padding: $padding-y $padding-x; - font-size: $font-size; - line-height: $line-height; - border: 0; - @include border-radius($border-radius); - - &::before { - width: ($padding-y * 2) + ($font-size * $line-height); - height: ($padding-y * 2) + ($font-size * $line-height); - padding: $padding-y 0; - font-size: $font-size; - line-height: $line-height; - @include border-radius($border-radius); - } - - span { - margin-left: ($padding-y * 2) + ($font-size * $line-height); - } - - &.icon { - width: ($padding-y * 2) + ($font-size * $line-height); - height: ($padding-y * 2) + ($font-size * $line-height); - } -} - -@mixin avatar($width, $status-width) { - position: relative; - display: inline-block; - width: $width; - - .img-avatar { - width: $width; - height: $width; - } - - .avatar-status { - position: absolute; - right: 0; - bottom: 0; - display: block; - width: $status-width; - height: $status-width; - border: 1px solid #fff; - border-radius: 50em; - } -} - -@mixin borders($borders) { - @each $border in $borders { - $direction: nth($border, 1); - @if $direction == "all" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border: $size $style $color; - } @else if $direction == "top" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-top: $size $style $color; - } @else if $direction == "right" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-right: $size $style $color; - } @else if $direction == "bottom" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-bottom: $size $style $color; - } @else if $direction == "left" { - $size: map-get(map-get($borders, $direction), size); - $style: map-get(map-get($borders, $direction), style); - $color: map-get(map-get($borders, $direction), color); - border-left: $size $style $color; - } - } -} - -@mixin sidebar-width($borders, $width) { - $sidebar-width: $width; - - @each $border in $borders { - $direction: nth($border, 1); - @if $direction == "all" { - $size: map-get(map-get($borders, $direction), size); - $sidebar-width: ($sidebar-width - (2 * $size)); - } @else if $direction == "right" { - $size: map-get(map-get($borders, $direction), size); - $sidebar-width: $sidebar-width - $size; - } @else if $direction == "left" { - $size: map-get(map-get($borders, $direction), size); - $sidebar-width: $sidebar-width - $size; - } - width: $sidebar-width; - } -} - -@mixin bg-variant($parent, $color) { - #{$parent} { - @include border-radius($card-border-radius-inner $card-border-radius-inner $card-border-radius-inner $card-border-radius-inner); - color: #fff !important; - background-color: $color !important; - } - a#{$parent} { - @include hover-focus { - background-color: darken($color, 10%); - } - } -} - -@mixin card-accent-variant($color) { - border-top-width: 2px; - border-top-color: $color; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_mobile.scss b/Angular4_CLI_Starter/src/scss/core/_mobile.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/Angular4_CLI_Starter/src/scss/core/_modal.scss b/Angular4_CLI_Starter/src/scss/core/_modal.scss deleted file mode 100644 index 1c44ddd03..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_modal.scss +++ /dev/null @@ -1,13 +0,0 @@ -@each $color, $value in $theme-colors { - .modal-#{$color} { - - .modal-content { - border-color: $value; - } - - .modal-header { - color: #fff; - background-color: $value; - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_nav.scss b/Angular4_CLI_Starter/src/scss/core/_nav.scss deleted file mode 100644 index ba1d64b3a..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_nav.scss +++ /dev/null @@ -1,32 +0,0 @@ -.nav-tabs { - .nav-link { - color: $gray-600; - &.active { - color: $gray-800; - background: #fff; - border-color: $border-color; - border-bottom-color: #fff; - &:focus { - background: #fff; - border-color: $border-color; - border-bottom-color: #fff; - } - } - } -} - -.tab-content { - margin-top: -1px; - background: #fff; - border: 1px solid $border-color; - .tab-pane { - padding: $spacer; - } -} - -.card-block { - .tab-content { - margin-top: 0; - border: 0; - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_navbar.scss b/Angular4_CLI_Starter/src/scss/core/_navbar.scss deleted file mode 100644 index 221ab1263..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_navbar.scss +++ /dev/null @@ -1,127 +0,0 @@ -.app-header.navbar { - position: relative; - flex-direction: row; - height: $navbar-height; - padding: 0; - margin: 0; - background-color: $navbar-bg; - @include borders($navbar-border); - - .navbar-brand { - display: inline-block; - width: $navbar-brand-width; - height: $navbar-height; - padding: $navbar-padding-y $navbar-padding-x; - margin-right: 0; - background-color: $navbar-brand-bg; - background-image: $navbar-brand-logo; - background-repeat: no-repeat; - background-position: center center; - background-size: $navbar-brand-logo-size; - @include borders($navbar-brand-border); - } - - .navbar-toggler { - min-width: 50px; - padding: $navbar-toggler-padding-y 0; - - &:hover .navbar-toggler-icon { - background-image: $navbar-toggler-icon-hover; - } - } - - .navbar-toggler-icon { - height: 23px; - background-image: $navbar-toggler-icon; - } - - .navbar-nav { - flex-direction: row; - align-items: center; - } - - .nav-item { - position: relative; - min-width: 50px; - margin: 0 !important; - text-align: center; - - button { - margin: 0 auto; - } - - .nav-link { - padding-top: 0; - padding-bottom: 0; - background: 0; - border: 0; - - .badge { - position: absolute; - top: 50%; - left: 50%; - margin-top: -16px; - margin-left: 0; - } - - > .img-avatar { - height: $navbar-height - 20px; - margin: 0 10px; - } - } - } - - .dropdown-menu { - padding-bottom: 0; - line-height: $line-height-base; - } - - .dropdown-item { - min-width: 180px; - } -} - -.navbar-brand { - color: $navbar-active-color; - - @include hover-focus { - color: $navbar-active-color; - } -} - -.navbar-nav { - .nav-link { - color: $navbar-color; - - @include hover-focus { - color: $navbar-hover-color; - } - } - - .open > .nav-link, - .active > .nav-link, - .nav-link.open, - .nav-link.active { - @include plain-hover-focus { - color: $navbar-active-color; - } - } -} - -.navbar-divider { - background-color: rgba(0,0,0,.075); -} - -@include media-breakpoint-up(lg) { - .brand-minimized { - .app-header.navbar { - .navbar-brand { - width: $navbar-brand-minimized-width; - background-color: $navbar-brand-minimized-bg; - background-image: $navbar-brand-minimized-logo; - background-size: $navbar-brand-minimized-logo-size; - @include borders($navbar-brand-minimized-border); - } - } - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_others.scss b/Angular4_CLI_Starter/src/scss/core/_others.scss deleted file mode 100644 index 381baab08..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_others.scss +++ /dev/null @@ -1,4 +0,0 @@ -// scss-lint:disable QualifyingElement -hr.transparent { - border-top: 1px solid transparent; -} diff --git a/Angular4_CLI_Starter/src/scss/core/_progress.scss b/Angular4_CLI_Starter/src/scss/core/_progress.scss deleted file mode 100644 index 65f56dd30..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_progress.scss +++ /dev/null @@ -1,15 +0,0 @@ -.progress-xs { - height: 4px; -} - -.progress-sm { - height: 8px; -} - -// White progress bar -.progress-white { - background-color: rgba(255,255,255,.2) !important; - .progress-bar { - background-color: #fff; - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_rtl.scss b/Angular4_CLI_Starter/src/scss/core/_rtl.scss deleted file mode 100644 index 28db38596..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_rtl.scss +++ /dev/null @@ -1,281 +0,0 @@ -// -// RTL Support -// -// scss-lint:disable NestingDepth, SelectorDepth -*[dir="rtl"] { - direction: rtl; - unicode-bidi: embed; - - ul { - -webkit-padding-start: 0; - } - - table tr th { - text-align: right; - } - - // Breadcrumb - - .breadcrumb-item { - float: right; - } - - .breadcrumb-menu { - right: auto; - left: $breadcrumb-padding-x; - } - - // Dropdown - .dropdown-item { - text-align: right; - - i { - margin-right: -10px; - margin-left: 10px; - } - - .badge { - right: auto; - left: 10px; - } - } - - // - // Sidebar - // - .sidebar-hidden { - .sidebar { - margin-right: - $sidebar-width; - } - } - - .sidebar-fixed { - .main, .app-footer { - margin-right: $sidebar-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-right: 0; - } - } - } - - .sidebar-minimized { - .sidebar { - flex: 0 0 $sidebar-minimized-width; - } - - &.sidebar-hidden { - .sidebar { - margin-right: - $sidebar-minimized-width; - margin-left: 0; - } - } - - &.sidebar-fixed { - .main, .app-footer { - margin-right: $sidebar-minimized-width; - } - - &.sidebar-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - } - - // - // Aside Menu - // - .aside-menu-hidden { - .aside-menu { - margin-right: 0; - margin-left: - $aside-menu-width; - } - } - - .aside-menu-fixed { - .aside-menu { - right: auto; - left: 0; - } - - .main, .app-footer { - //margin-right: 0; - margin-left: $aside-menu-width; - } - - &.aside-menu-hidden { - .main, .app-footer { - margin-left: 0; - } - } - } - - .aside-menu-off-canvas { - .aside-menu { - position: fixed; - right: 0; - z-index: $zindex-sticky - 1; - height: 100%; - - .tab-content { - height: calc(100vh - #{$aside-menu-nav-padding-y * 2 + $font-size-base} - #{$navbar-height}); - } - } - } - - // Sidebar Menu - .sidebar { - .sidebar-nav { - .nav { - .nav-item { - .nav-link { - direction: rtl; - i { - margin: 0 0 0 ($sidebar-nav-link-padding-x / 2); - } - .badge { - float: left; - margin-top: 2px; - // margin-left: 10px; - } - &.nav-dropdown-toggle { - &::before { - position: absolute; - right: auto !important; - left: $sidebar-nav-link-padding-x; - transform: rotate(180deg); - } - } - } - &.nav-dropdown { - &.open { - > .nav-link.nav-dropdown-toggle::before { - transform: rotate(270deg); - } - } - } - } - } - } - } - - .sidebar-minimized .sidebar { - .nav-link { - padding-right: 0; - i { - float: right; - padding: 0; - margin: 0; - } - .badge { - right: auto; - left: 15px; - } - } - .nav > .nav-dropdown { - - &:hover { - > .nav-dropdown-items { - right: $sidebar-minimized-width; - left: 0; - } - } - } - } - - // Horizontal bars - .horizontal-bars { - - li { - - .bars { - padding-right: 100px; - padding-left: 0; - - .progress:first-child { - margin-bottom: 2px; - } - } - } - - &.type-2 { - - li { - - i { - margin-right: 5px; - margin-left: $spacer; - } - - .value { - float: left; - font-weight: 600; - } - - .bars { - padding: 0; - } - } - } - } - - // Icon list - .icons-list { - - li { - position: relative; - height: 40px; - vertical-align: middle; - - i { - float: right; - } - - .desc { - margin-right: 50px; - margin-left: 0; - } - - .value { - right: auto; - left: 45px; - text-align: left; - - strong { - display: block; - margin-top: -3px; - } - } - - .actions { - right: auto; - left: 10px; - } - } - } - - // Callouts - .callout { - border: 0 solid $border-color; - border-right-width: .25rem; - - @each $color, $value in $theme-colors { - &.callout-#{$color} { - border-right-color: $value; - } - } - - .chart-wrapper { - left: 0; - float: left; - } - } - - .callout-default { - border-right-color: $text-muted; - } -} diff --git a/Angular4_CLI_Starter/src/scss/core/_sidebar.scss b/Angular4_CLI_Starter/src/scss/core/_sidebar.scss deleted file mode 100644 index b77cd5f85..000000000 --- a/Angular4_CLI_Starter/src/scss/core/_sidebar.scss +++ /dev/null @@ -1,454 +0,0 @@ -// scss-lint:disable NestingDepth, SelectorDepth -.sidebar { - display: flex; - flex-direction: column; - padding: $sidebar-padding; - color: $sidebar-color; - background: $sidebar-bg; - @include borders($sidebar-borders); - - .sidebar-close { - position: absolute; - right: 0; - display: none; - padding: 0 $spacer; - font-size: 24px; - font-weight: 800; - line-height: $navbar-height; - color: $sidebar-color; - background: 0; - border: 0; - opacity: .8; - - &:hover { - opacity: 1; - } - } - - // Will be added soon - // .sidebar-brand { } - - .sidebar-header { - flex: 0 0 $sidebar-header-height; - padding: $sidebar-header-padding-y $sidebar-header-padding-x; - text-align: center; - background: $sidebar-header-bg; - } - - .sidebar-form .form-control { - color: $sidebar-form-color; - background: $sidebar-form-bg; - border: $sidebar-form-border; - - &::placeholder { - color: $sidebar-form-placeholder-color; - } - } - - .sidebar-nav { - position: relative; - flex: 1; - overflow-x: hidden; - overflow-y: auto; - -ms-overflow-style: -ms-autohiding-scrollbar; - @include sidebar-width($sidebar-borders, $sidebar-width); - - &::-webkit-scrollbar { - position: absolute; - width: 10px; - margin-left: -10px; - -webkit-appearance: none; - } - - &::-webkit-scrollbar-track { - background-color: lighten($sidebar-bg, 5%); - border-right: 1px solid darken($sidebar-bg, 5%); - border-left: 1px solid darken($sidebar-bg, 5%); - } - - &::-webkit-scrollbar-thumb { - height: 50px; - background-color: darken($sidebar-bg, 10%); - background-clip: content-box; - border-color: transparent; - border-style: solid; - border-width: 1px 2px; - } - } - - .nav { - @include sidebar-width($sidebar-borders, $sidebar-width); - flex-direction: column; - min-height: 100%; - } - - .nav-title { - padding: $sidebar-nav-title-padding-y $sidebar-nav-title-padding-x; - font-size: 11px; - font-weight: 600; - color: $sidebar-nav-title-color; - text-transform: uppercase; - } - - .nav-divider, .divider { - height: 10px; - } - - .nav-item { - position: relative; - margin: 0; - transition: background .3s ease-in-out; - } - - .nav-dropdown-items { - max-height: 0; - padding: 0; - margin: 0; - overflow-y: hidden; - transition: max-height .3s ease-in-out; - - .nav-item { - padding: 0; - list-style: none; - } - } - - .nav-link { - display: block; - padding: $sidebar-nav-link-padding-y $sidebar-nav-link-padding-x; - color: $sidebar-nav-link-color; - text-decoration: none; - background: $sidebar-nav-link-bg; - @include borders($sidebar-nav-link-borders); - @if $enable-sidebar-nav-rounded { - border-radius: $border-radius; - } - - i { - display: inline-block; - width: 20px; - margin: 0 ($sidebar-nav-link-padding-x / 2) 0 0; - font-size: 14px; - color: $sidebar-nav-link-icon-color; - text-align: center; - } - - .badge { - float: right; - margin-top: 2px; - } - - &.active { - color: $sidebar-nav-link-active-color; - background: $sidebar-nav-link-active-bg; - @include borders($sidebar-nav-link-active-borders); - - i { - color: $sidebar-nav-link-active-icon-color; - } - } - - &:hover { - color: $sidebar-nav-link-hover-color; - background: $sidebar-nav-link-hover-bg; - @include borders($sidebar-nav-link-hover-borders); - - i { - color: $sidebar-nav-link-hover-icon-color; - } - - &.nav-dropdown-toggle::before { - background-image: $sidebar-nav-dropdown-indicator-hover; - } - } - - @each $color, $value in $theme-colors { - &.nav-link-#{$color} { - background: $value; - i { - color: rgba(255,255,255,.7); - } - &:hover { - background: darken($value,5%) !important; - i { - color: #fff; - } - } - } - } - } - - // ex. Components - .nav-dropdown-toggle { - position: relative; - - &::before { - position: absolute; - top: 50%; - right: $sidebar-nav-link-padding-x; - display: block; - width: 8px; - height: 8px; - padding: 0; - margin-top: -4px; - content: ""; - background-image: $sidebar-nav-dropdown-indicator; - background-repeat: no-repeat; - background-position: center; - transition: transform .3s; - } - } - - // ex.