Skip to content

Commit cebf543

Browse files
Dan WahlinDan Wahlin
Dan Wahlin
authored and
Dan Wahlin
committed
Moved css out
1 parent bf4291a commit cebf543

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

src/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
"start": "concurrently \"npm run tsc:w\" \"nodemon server.js\""
1313
},
1414
"dependencies": {
15-
"@angular/common": "2.2.0",
16-
"@angular/compiler": "2.2.0",
17-
"@angular/core": "2.2.0",
18-
"@angular/forms": "2.2.0",
19-
"@angular/http": "2.2.0",
20-
"@angular/platform-browser": "2.2.0",
21-
"@angular/platform-browser-dynamic": "2.2.0",
22-
"@angular/router": "3.2.0",
23-
"@angular/upgrade": "2.2.0",
24-
"systemjs": "0.19.40",
15+
"@angular/common": "2.4.1",
16+
"@angular/compiler": "2.4.1",
17+
"@angular/core": "2.4.1",
18+
"@angular/forms": "2.4.1",
19+
"@angular/http": "2.4.1",
20+
"@angular/platform-browser": "2.4.1",
21+
"@angular/platform-browser-dynamic": "2.4.1",
22+
"@angular/router": "3.4.1",
23+
"@angular/upgrade": "2.4.1",
24+
"systemjs": "0.19.41",
2525
"core-js": "^2.4.1",
26-
"reflect-metadata": "^0.1.8",
27-
"rxjs": "5.0.0-beta.12",
28-
"zone.js": "^0.6.26",
26+
"reflect-metadata": "^0.1.9",
27+
"rxjs": "5.0.2",
28+
"zone.js": "^0.7.4",
2929
"cookie-parser": "^1.4.3",
3030
"body-parser": "^1.15.2",
3131
"csurf": "^1.9.0",
@@ -44,7 +44,7 @@
4444
"devDependencies": {
4545
"concurrently": "^3.1.0",
4646
"lite-server": "^2.2.2",
47-
"typescript": "2.1.4",
47+
"typescript": "2.0.8",
4848
"del": "^2.2.2",
4949
"gulp": "^3.9.1",
5050
"gulp-concat": "^2.6.1",
@@ -53,7 +53,7 @@
5353
"gulp-sass": "^2.3.2",
5454
"gulp-uglify": "^2.0.0",
5555
"run-sequence": "^1.2.2",
56-
"@types/core-js": "^0.9.34",
57-
"@types/node": "^6.0.48"
56+
"@types/core-js": "^0.9.35",
57+
"@types/node": "^6.0.54"
5858
}
5959
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
2+
background-color: #027FF4;
3+
border-color: #027FF4;
4+
}
5+
6+
.pagination a {
7+
cursor: pointer;
8+
}

src/public/app/shared/pagination/pagination.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
33
@Component({
44
moduleId: module.id,
55
selector: 'pagination',
6-
templateUrl: 'pagination.component.html'
6+
templateUrl: 'pagination.component.html',
7+
styleUrls: [ 'pagination.component.css' ]
78
})
89

910
export class PaginationComponent implements OnInit {

src/public/styles/styles.css

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,3 @@ form {
247247
border-left: 5px solid #42A948;
248248
}
249249

250-
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
251-
background-color: #027FF4;
252-
border-color: #027FF4;
253-
}
254-
255-
.pagination a {
256-
cursor: pointer;
257-
}
258-

0 commit comments

Comments
 (0)