Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Baisser la tailles des colonnes du tableau(PIX-14545) #10818

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion orga/app/components/mission/activity-table.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function statusColor(status) {
<template>
{{#if @missionLearners}}
<div class="panel">
<table class="table content-text content-text--small participation-list__table">
<table class="table content-text content-text--small participation-list__table mission-table">
<caption class="screen-reader-only">{{t
"pages.missions.mission.table.activities.caption"
missionName=@mission.name
Expand Down
2 changes: 1 addition & 1 deletion orga/app/components/mission/result-table.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function getMissionResultColor(result) {
<template>
{{#if @missionLearners}}
<div class="panel">
<table class="table content-text content-text--small participation-list__table">
<table class="table content-text content-text--small participation-list__table mission-table">
<caption class="screen-reader-only">{{t
"pages.missions.mission.table.result.caption"
[email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
font-weight: 700;
}

&.mission-table {
th:last-child {
width: 250px;
}
}

td {
color: var(--pix-neutral-900);
}
Expand Down
Loading