From 0c6a9bbd71468d685912d461cc37dd770528fb4a Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Mon, 19 Oct 2015 14:46:17 -0700 Subject: [PATCH] Add more copy on show job --- client/less/main.less | 4 ++++ common/app/routes/Jobs/components/List.jsx | 2 +- common/app/routes/Jobs/components/ShowJob.jsx | 22 ++++++++++--------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/client/less/main.less b/client/less/main.less index 35b5491ae2..4a86571c99 100644 --- a/client/less/main.less +++ b/client/less/main.less @@ -9,6 +9,10 @@ html,body,div,span,a,li,td,th { font-weight: 300; } +bold { + font-weight: 500; +} + li, .wrappable { white-space: pre; /* CSS 2.0 */ white-space: pre-wrap; /* CSS 2.1 */ diff --git a/common/app/routes/Jobs/components/List.jsx b/common/app/routes/Jobs/components/List.jsx index 49d471f097..300630684b 100644 --- a/common/app/routes/Jobs/components/List.jsx +++ b/common/app/routes/Jobs/components/List.jsx @@ -48,7 +48,7 @@ export default React.createClass({ onClick={ () => handleClick(id) }>

- { company } + { company } {' '} - { position } diff --git a/common/app/routes/Jobs/components/ShowJob.jsx b/common/app/routes/Jobs/components/ShowJob.jsx index b1d8faad5a..497b06a5f5 100644 --- a/common/app/routes/Jobs/components/ShowJob.jsx +++ b/common/app/routes/Jobs/components/ShowJob.jsx @@ -1,6 +1,5 @@ import React, { PropTypes } from 'react'; import { Row, Col, Thumbnail, Panel } from 'react-bootstrap'; -import moment from 'moment'; const defaultImage = 'https://pbs.twimg.com/' + @@ -43,7 +42,6 @@ export default React.createClass({ locale, email, phone, - postedOn, description } = job; @@ -63,8 +61,8 @@ export default React.createClass({
+ md={ 2 } + mdOffset={ 3 }> - Position: { position || 'N/A' } + Position: { position || 'N/A' }
- Location: { locale ? locale : `${city}, ${state}` } -
- Contact: { email || phone || 'N/A' } -
- Posted On: { moment(postedOn).format('MMMM Do, YYYY') } + Location: + { locale ? locale : `${city}, ${state}` }
@@ -91,6 +86,13 @@ export default React.createClass({

{ description }

+ + + Contact: { email || phone } + +