Skip to content

Commit 8ea95c7

Browse files
committed
fix: issue #4450, #4451, #4452, #4454
1 parent 4bfbbfa commit 8ea95c7

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

src/projects/detail/components/SimplePlan/ManageMilestones/ManageMilestones.jsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ class ManageMilestones extends React.Component {
259259
</button>
260260
<div styleName="separator" /> */}
261261
{this.getSelectCount() > 0 ? <div styleName="unselect-bottom" onClick={this.onUnselectAll}>
262-
<IconUnselect /> {this.getSelectCount()} PROJECTS SELECTED
262+
<IconUnselect /> {this.getSelectCount()} PROJECT(S) SELECTED
263263
</div>: null }
264264
{canEdit ? <div styleName="line"/>: null}
265265
{ canEdit ? <div styleName="delete-button">
@@ -284,17 +284,6 @@ class ManageMilestones extends React.Component {
284284
<div styleName="table-container">
285285
<Formsy.Form>
286286
<table styleName="milestones-table">
287-
<colgroup>
288-
<col style={{ width: '20px' }} />
289-
<col style={{ width: '20px' }} />{/* CHECKBOX */}
290-
<col style={{ width: '8%' }} />{/* MILESTONE */}
291-
<col />{/* DESCRIPTION */}
292-
<col style={{ width: '12%' }} />{/* START DATE */}
293-
<col style={{ width: '11%' }} />{/* END DATE */}
294-
<col style={{ width: '10%' }} />{/* STATUS */}
295-
<col style={{ width: '13%' }} />{/* COPILOTS */}
296-
{isUpdatable && (<col style={{ width: '64px' }} />)}{/* ACTION */}
297-
</colgroup>
298287
<thead>
299288
<MilestoneHeaderRow
300289
milestones={milestones}

src/projects/detail/components/SimplePlan/components/ConfirmMoveMilestoneDate/ConfirmMoveMilestoneDate.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
margin-bottom: 10px;
2727
>input {
2828
height: 26px;
29+
line-height: 26px;
2930
width: 80px;
3031
margin: 0 10px 0 0;
3132
}

src/projects/detail/components/SimplePlan/components/MilestoneMoveDateButton/MilestoneMoveDateButton.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
height: 14px;
44
padding: 0;
55
border: 0;
6+
margin: 0 8px;
67
cursor: pointer;
78

89
svg {

src/projects/detail/components/SimplePlan/components/MilestoneRow/MilestoneRow.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,9 @@
153153
> *:not(:last-child) {
154154
margin-right: 10px;
155155
}
156+
svg {
157+
width: 14px;
158+
height: 14px;
159+
}
156160
}
157161
}

0 commit comments

Comments
 (0)