Skip to content
This repository was archived by the owner on Feb 21, 2019. It is now read-only.

Commit c8e157a

Browse files
committed
Merge branch 'develop' of github.com:tracim/tracim_v2 into develop
2 parents a3f73db + afdc007 commit c8e157a

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

frontend/src/container/Dashboard.jsx

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import UserStatus from '../component/Dashboard/UserStatus.jsx'
2929
import ContentTypeBtn from '../component/Dashboard/ContentTypeBtn.jsx'
3030
import RecentActivity from '../component/Dashboard/RecentActivity.jsx'
3131
import MemberList from '../component/Dashboard/MemberList.jsx'
32-
import MoreInfo from '../component/Dashboard/MoreInfo.jsx'
32+
// import MoreInfo from '../component/Dashboard/MoreInfo.jsx'
3333

3434
class Dashboard extends React.Component {
3535
constructor (props) {
@@ -319,13 +319,18 @@ class Dashboard extends React.Component {
319319
/>
320320
</div>
321321

322-
<MoreInfo
323-
onClickToggleWebdav={this.handleToggleWebdavBtn}
324-
displayWebdavBtn={state.displayWebdavBtn}
325-
onClickToggleCalendar={this.handleToggleCalendarBtn}
326-
displayCalendarBtn={state.displayCalendarBtn}
327-
t={props.t}
328-
/>
322+
{ /*
323+
AC - 11/09/2018 - not included in v2.0 roadmap
324+
325+
<MoreInfo
326+
onClickToggleWebdav={this.handleToggleWebdavBtn}
327+
displayWebdavBtn={state.displayWebdavBtn}
328+
onClickToggleCalendar={this.handleToggleCalendarBtn}
329+
displayCalendarBtn={state.displayCalendarBtn}
330+
t={props.t}
331+
/>
332+
*/ }
333+
329334
</PageContent>
330335
</PageWrapper>
331336
</div>

frontend/src/container/Login.jsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React from 'react'
22
import { connect } from 'react-redux'
33
import { withRouter, Redirect } from 'react-router'
44
import { translate } from 'react-i18next'
5-
import LoginLogo from '../component/Login/LoginLogo.jsx'
6-
import LoginLogoImg from '../img/logoTracimWhite.svg'
5+
// import LoginLogo from '../component/Login/LoginLogo.jsx'
6+
// import LoginLogoImg from '../img/logoTracimWhite.svg'
77
import Card from '../component/common/Card/Card.jsx'
88
import CardHeader from '../component/common/Card/CardHeader.jsx'
99
import CardBody from '../component/common/Card/CardBody.jsx'
@@ -113,7 +113,13 @@ class Login extends React.Component {
113113
<section className='loginpage primaryColorBg'>
114114
<div className='container-fluid'>
115115

116-
<LoginLogo customClass='loginpage__logo' logoSrc={LoginLogoImg} />
116+
{ /*
117+
AC - 11/09/2018 - disable the logo to leave more space for the login form
118+
<LoginLogo
119+
customClass='loginpage__logo'
120+
logoSrc={LoginLogoImg}
121+
/>
122+
*/ }
117123

118124
<div className='row justify-content-center'>
119125
<div className='col-12 col-sm-11 col-md-8 col-lg-6 col-xl-4'>

frontend/src/css/Login.styl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
padding 50px 0
1212
width 170px
1313
&__connection
14-
margin-bottom 50px
1514
border none
1615
box-shadow shadow-right
1716
border-radius 7px 7px 5px 5px

0 commit comments

Comments
 (0)