@@ -4,7 +4,6 @@ import cx from 'classnames';
44import { CompositeDisposable } from 'atom' ;
55
66import StagingView from './staging-view' ;
7- import GitLogo from './git-logo' ;
87import CommitController from '../controllers/commit-controller' ;
98import RecentCommitsController from '../controllers/recent-commits-controller' ;
109import RefHolder from '../models/ref-holder' ;
@@ -89,11 +88,9 @@ export default class GitTabView extends React.Component {
8988 if ( this . props . repository . isTooLarge ( ) ) {
9089 return (
9190 < div className = "github-Git is-empty" tabIndex = "-1" ref = { this . props . refRoot . setter } >
92- < div ref = "noRepoMessage" className = "github-Git no-repository" >
93- < div className = "large-icon" >
94- < GitLogo />
95- </ div >
96- < h3 > Too many changes</ h3 >
91+ < div ref = "noRepoMessage" className = "github-Git too-many-changes" >
92+ < div className = "github-Git-LargeIcon icon icon-diff" />
93+ < h1 > Too many changes</ h1 >
9794 < div className = "initialize-repo-description" >
9895 The repository at < strong > { this . props . workingDirectoryPath } </ strong > has too many changed files
9996 to display in Atom. Ensure that you have set up an appropriate < code > .gitignore</ code > file.
@@ -105,11 +102,9 @@ export default class GitTabView extends React.Component {
105102 ! isValidWorkdir ( this . props . repository . getWorkingDirectoryPath ( ) ) ) {
106103 return (
107104 < div className = "github-Git is-empty" tabIndex = "-1" ref = { this . props . refRoot . setter } >
108- < div ref = "noRepoMessage" className = "github-Git no-repository" >
109- < div className = "large-icon" >
110- < GitLogo />
111- </ div >
112- < h3 > Unsupported directory</ h3 >
105+ < div ref = "noRepoMessage" className = "github-Git unsupported-directory" >
106+ < div className = "github-Git-LargeIcon icon icon-alert" />
107+ < h1 > Unsupported directory</ h1 >
113108 < div className = "initialize-repo-description" >
114109 Atom does not support managing Git repositories in your home or root directories.
115110 </ div >
@@ -129,9 +124,8 @@ export default class GitTabView extends React.Component {
129124 return (
130125 < div className = "github-Git is-empty" tabIndex = "-1" ref = { this . props . refRoot . setter } >
131126 < div ref = "noRepoMessage" className = "github-Git no-repository" >
132- < div className = "large-icon" >
133- < GitLogo />
134- </ div >
127+ < div className = "github-Git-LargeIcon icon icon-repo" />
128+ < h1 > Create Repository</ h1 >
135129 < div className = "initialize-repo-description" > { message } </ div >
136130 < button onClick = { this . initializeRepo } disabled = { inProgress } className = "btn btn-primary" >
137131 { inProgress ? 'Creating repository...' : 'Create repository' }
0 commit comments