@@ -191,7 +191,7 @@ function TotalByWeek({ by_week, title }) {
191
191
row = { row }
192
192
column = { 1 }
193
193
colspan = { `span ${ FIRST_DATA_COLUMN - 1 } ` }
194
- className = "planning--scale text-end pr -2"
194
+ className = "planning--scale text-end pe -2"
195
195
>
196
196
< strong > { title } </ strong >
197
197
</ Cell >
@@ -222,7 +222,7 @@ function Capacity({ total, by_user }) {
222
222
row = { row }
223
223
column = { 1 }
224
224
colspan = { `span ${ FIRST_DATA_COLUMN - 1 } ` }
225
- className = "planning--scale text-end pr -2"
225
+ className = "planning--scale text-end pe -2"
226
226
>
227
227
< strong > { gettext ( "Remaining capacity per week" ) } </ strong >
228
228
</ Cell >
@@ -259,7 +259,7 @@ function UserCapacity({ user, capacity }) {
259
259
row = { row }
260
260
column = { 1 }
261
261
colspan = { `span ${ FIRST_DATA_COLUMN - 1 } ` }
262
- className = "planning--scale text-end pr -2"
262
+ className = "planning--scale text-end pe -2"
263
263
tag = "a"
264
264
href = { user . url }
265
265
>
@@ -469,7 +469,7 @@ const Milestones = ({ project }) => {
469
469
} }
470
470
className = "planning--milestones"
471
471
/>
472
- < Cell row = { row } column = { 1 } className = "planning--title is-milestone pl -3" >
472
+ < Cell row = { row } column = { 1 } className = "planning--title is-milestone ps -3" >
473
473
{ gettext ( "milestones" ) }
474
474
</ Cell >
475
475
{ project . milestones . map ( ( m , i ) => {
@@ -488,7 +488,7 @@ const Milestones = ({ project }) => {
488
488
< Cell
489
489
row = { row }
490
490
column = { 1 }
491
- className = { "planning--title is-pw planning--small pl -5" }
491
+ className = { "planning--title is-pw planning--small ps -5" }
492
492
>
493
493
< a href = { m . url } data-ajaxmodal >
494
494
{ m . title }
@@ -555,7 +555,7 @@ function Offer({ offer, external_view, work_list }) {
555
555
const ctx = useContext ( RowContext )
556
556
const row = ctx . next ( )
557
557
558
- const classList = [ "planning--title is-offer pl -3" ]
558
+ const classList = [ "planning--title is-offer ps -3" ]
559
559
if ( offer . is_declined ) classList . push ( "is-declined" )
560
560
if ( ! offer . is_accepted ) classList . push ( "is-not-accepted" )
561
561
@@ -583,7 +583,7 @@ function Offer({ offer, external_view, work_list }) {
583
583
</ Cell >
584
584
</ >
585
585
) : (
586
- < Cell row = { row } column = { 1 } className = "planning--title is-offer pl -3" >
586
+ < Cell row = { row } column = { 1 } className = "planning--title is-offer ps -3" >
587
587
{ gettext ( "Not part of an offer" ) }
588
588
</ Cell >
589
589
) }
@@ -624,7 +624,7 @@ function Work({ work, hours_per_week, absences, isEven }) {
624
624
column = { 1 }
625
625
className = { `planning--title is-pw ${
626
626
work . is_provisional ? "is-provisional" : ""
627
- } planning--small pl -5`}
627
+ } planning--small ps -5`}
628
628
>
629
629
< a href = { work . url } data-ajaxmodal >
630
630
{ work . title }
@@ -726,7 +726,7 @@ const ExternalExpenses = ({ external_work }) => {
726
726
} }
727
727
className = "planning--external"
728
728
/>
729
- < Cell row = { row } column = { 1 } className = "planning--title is-external pl -3" >
729
+ < Cell row = { row } column = { 1 } className = "planning--title is-external ps -3" >
730
730
{ gettext ( "Efforts" ) }
731
731
</ Cell >
732
732
{ external_work . map ( ( work , idx ) => (
@@ -755,7 +755,7 @@ const ExternalWork = ({ idx, work }) => {
755
755
column = { 1 }
756
756
className = { `planning--title is-pw ${
757
757
work . is_provisional ? "is-provisional" : ""
758
- } planning--small pl -5`}
758
+ } planning--small ps -5`}
759
759
>
760
760
< a href = { work . url } data-ajaxmodal >
761
761
{ work . title } ({ work . provided_by } )
@@ -846,7 +846,7 @@ function Absences({ absences }) {
846
846
// <Cell
847
847
// row={row}
848
848
// column={1}
849
- // className="planning--small is-project-absence pl -3"
849
+ // className="planning--small is-project-absence ps -3"
850
850
// >
851
851
// {user[0].name}
852
852
// </Cell>
@@ -898,7 +898,7 @@ function UserAbsences({ user }) {
898
898
899
899
return (
900
900
< >
901
- < Cell row = { row } column = { 1 } className = "planning--title is-absence pl -3" >
901
+ < Cell row = { row } column = { 1 } className = "planning--title is-absence ps -3" >
902
902
{ user [ 0 ] }
903
903
</ Cell >
904
904
{ user [ 1 ] . map ( ( absences , idx ) => {
0 commit comments