Skip to content

Commit

Permalink
adding webp image
Browse files Browse the repository at this point in the history
using webp images instead of jpg,png
Update search-bar.component.html
Update results.component.html
Update help.component.html
Update dropdown.component.html
Update contact.component.html
Update styles.css
Update styles.css
Fix fossasia#1388 : did you mean content is now clickable

Adding rel="noopener" for fixing cross-link links
Fixing not found result page
Update results.component.ts
Update results.component.ts
Update results.component.html
Update results.component.html
Refactors Theme Component and added tests for coverage

Merge branch 'development' into patch-17
Fixes fossasia#1327: Contact componnet refactored (fossasia#1328)


Fixes  fossasia#1317: Reducers and Actions cleaned (fossasia#1318)


Update contact.component.html
Merge branch 'development' into patch-17
Update dropdown.component.html
Update dropdown.component.html
Update help.component.html
Update results.component.html
Update results.component.html
Update search-bar.component.html
Update search-bar.component.html
Update results.component.html
Update help.component.html
Update dropdown.component.html
Update contact.component.html
  • Loading branch information
subhahu123 committed Feb 8, 2019
1 parent c2586a5 commit 9bbff62
Show file tree
Hide file tree
Showing 51 changed files with 769 additions and 601 deletions.
4 changes: 4 additions & 0 deletions src/app/actions/knowledge.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
import { Action } from '@ngrx/store';
import { type } from '../utils';

export const ActionTypes = {
CONTENT_CHANGE: type('[Knowledge] Content Change'),
IMAGE_CHANGE: type('[Knowledge] Image Change'),
DESCRIPTION_CHANGE: type('[Knowledge] Description Change')
};

export class SearchContentAction implements Action {
type = ActionTypes.CONTENT_CHANGE;
constructor(public payload: object) {}
}

export class SearchImageAction implements Action {
type = ActionTypes.IMAGE_CHANGE;
constructor(public payload: object) {}
}

export class DescriptionAction implements Action {
type = ActionTypes.DESCRIPTION_CHANGE;
constructor(public payload: object) {}
Expand Down
2 changes: 0 additions & 2 deletions src/app/actions/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ export const ActionTypes = {

export class QueryAction implements Action {
type = ActionTypes.QUERYCHANGE;

constructor(public payload: any) {}
}

export class QueryServerAction implements Action {
type = ActionTypes.QUERYSERVER;

constructor(public payload: any) {}
}

Expand Down
4 changes: 0 additions & 4 deletions src/app/actions/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,21 @@ export const ActionTypes = {

export class SearchAction implements Action {
type = ActionTypes.CHANGE;

constructor(public payload: any) {}
}

export class ItemsAction implements Action {
type = ActionTypes.ITEMS;

constructor(public payload: any) {}
}

export class TotalResultsAction implements Action {
type = ActionTypes.TOTALRESULTS;

constructor(public payload: any) {}
}

export class NavigationAction implements Action {
type = ActionTypes.NAVIGATION;

constructor(public payload: any) {}
}

Expand Down
1 change: 0 additions & 1 deletion src/app/actions/speech.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const ActionTypes = {

export class SearchAction implements Action {
type = ActionTypes.CHANGE;

constructor(public payload: any) {}
}

Expand Down
21 changes: 0 additions & 21 deletions src/app/contact/contact.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,6 @@
padding-left: 20px;
}

.navbar-text {
padding-right: 30px;
font-size: 20px;
margin-top: 6px;
}

.text-center {
text-align: center;
font-family: "Quicksand", sans-serif;
}

.bold {
font-weight: 700;
}
Expand All @@ -68,12 +57,6 @@ footer{
}
}


.about-navbar {
position: relative;
top: -5px;
}

.navbar {
margin-bottom: 0px !important;
}
Expand Down Expand Up @@ -131,10 +114,6 @@ footer{
font-size: 24px;
}

.navbar-fixed-bottom, .navbar-fixed-top{
position: relative !important;
}

.contact-title{
border-bottom: 1px solid #eee;
}
Expand Down

0 comments on commit 9bbff62

Please sign in to comment.