Skip to content

Commit 97ff981

Browse files
author
Frederic Collonval
committed
Move ts files relating to style in the same folder
1 parent 665e471 commit 97ff981

31 files changed

+24
-24
lines changed

src/components/BranchHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
branchHeaderCenterContent,
2626
branchTrackingIconStyle,
2727
branchTrackingLabelStyle
28-
} from '../componentsStyle/BranchHeaderStyle';
28+
} from '../style/BranchHeaderStyle';
2929

3030
import { classes } from 'typestyle';
3131

src/components/CommitBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
textInputStyle,
55
stagedCommitStyle,
66
stagedCommitMessageStyle
7-
} from '../componentsStyle/BranchHeaderStyle';
7+
} from '../style/BranchHeaderStyle';
88

99
import { classes } from 'typestyle';
1010

src/components/FileItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
changeStageButtonStyle,
66
diffFileButtonStyle,
77
discardFileButtonStyle
8-
} from '../componentsStyle/GitStageStyle';
8+
} from '../style/GitStageStyle';
99

1010
import {
1111
disabledFileStyle,
@@ -22,7 +22,7 @@ import {
2222
selectedFileChangedLabelStyle,
2323
selectedFileStyle,
2424
sideBarExpandedFileLabelStyle
25-
} from '../componentsStyle/FileItemStyle';
25+
} from '../style/FileItemStyle';
2626

2727
import { classes } from 'typestyle';
2828

src/components/FileList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {
3131
spreadsheetFileIconStyle,
3232
yamlFileIconSelectedStyle,
3333
yamlFileIconStyle
34-
} from '../componentsStyle/FileListStyle';
34+
} from '../style/FileListStyle';
3535
import { Git, IGitShowPrefixResult } from '../git';
3636
import { GitStage } from './GitStage';
3737

src/components/GitPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
panelContainerStyle,
2727
panelWarningStyle,
2828
findRepoButtonStyle
29-
} from '../componentsStyle/GitPanelStyle';
29+
} from '../style/GitPanelStyle';
3030
import { IRenderMimeRegistry } from '@jupyterlab/rendermime';
3131

3232
/** Interface for GitPanel component state */

src/components/GitStage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
caretrightImageStyle,
1313
changeStageButtonLeftStyle,
1414
discardFileButtonStyle
15-
} from '../componentsStyle/GitStageStyle';
15+
} from '../style/GitStageStyle';
1616

1717
import { FileItem } from './FileItem';
1818

src/components/GitWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { ISignal, Signal } from '@phosphor/signaling';
1414

1515
import { GitPanel } from './GitPanel';
1616

17-
import { gitWidgetStyle } from '../componentsStyle/GitWidgetStyle';
17+
import { gitWidgetStyle } from '../style/GitWidgetStyle';
1818

1919
import { IDiffCallback } from '../git';
2020

src/components/HistorySideBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { JupyterFrontEnd } from '@jupyterlab/application';
22
import * as React from 'react';
3-
import { historySideBarStyle } from '../componentsStyle/HistorySideBarStyle';
3+
import { historySideBarStyle } from '../style/HistorySideBarStyle';
44
import { IGitBranchResult, ISingleCommitInfo, IDiffCallback } from '../git';
55
import { PastCommitNode } from './PastCommitNode';
66
import { IRenderMimeRegistry } from '@jupyterlab/rendermime';

src/components/NewBranchBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
buttonStyle,
77
newBranchButtonStyle,
88
cancelNewBranchButtonStyle
9-
} from '../componentsStyle/NewBranchBoxStyle';
9+
} from '../style/NewBranchBoxStyle';
1010

1111
import { classes } from 'typestyle';
1212

src/components/PastCommitNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
pastCommitNodeStyle,
1414
remoteBranchStyle,
1515
workingBranchStyle
16-
} from '../componentsStyle/PastCommitNodeStyle';
16+
} from '../style/PastCommitNodeStyle';
1717
import { IGitBranchResult, ISingleCommitInfo, IDiffCallback } from '../git';
1818
import { SinglePastCommitInfo } from './SinglePastCommitInfo';
1919
import { IRenderMimeRegistry } from '@jupyterlab/rendermime';

0 commit comments

Comments
 (0)