Skip to content

Commit f05f391

Browse files
committed
💄 admin: clean css
1 parent eb10cf6 commit f05f391

File tree

6 files changed

+5
-29
lines changed

6 files changed

+5
-29
lines changed

admin/app/components/organizations/places.gjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default class Places extends Component {
5454
{{/if}}
5555

5656
{{#unless @places}}
57-
<div class="table-admin-empty">Aucun lot de places saisi</div>
57+
<div class="table__empty">Aucun lot de places saisi</div>
5858
{{/unless}}
5959

6060
<DeleteModal

admin/app/components/sessions/certifications/list.gjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default class CertificationsHeader extends Component {
108108

109109
<PixPagination @pagination={{@pagination}} />
110110
{{else}}
111-
<p class="certification-list-page__empty">{{t "common.tables.empty-result"}}</p>
111+
<p class="tables__empty">{{t "common.tables.empty-result"}}</p>
112112
{{/if}}
113113
</template>
114114
}

admin/app/styles/authenticated/sessions/session/certifications.scss

-7
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,4 @@
1515
gap: var(--pix-spacing-2x);
1616
align-items: center;
1717
}
18-
19-
&__empty {
20-
display: flex;
21-
align-items: center;
22-
justify-content: center;
23-
height: 180px;
24-
}
2518
}

admin/app/styles/globals/table-admin.scss

-9
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,7 @@
3535
}
3636
}
3737

38-
.table-admin__auto-width {
39-
table-layout: auto;
40-
}
41-
4238
.table-admin-input {
4339
width: 100%;
4440
padding: 3px 6px;
4541
}
46-
47-
.table-admin-empty {
48-
margin: 48px auto 36px;
49-
text-align: center;
50-
}

admin/app/styles/globals/tables.scss

-8
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,11 @@ td.td--bold {
7272
text-align: center;
7373
}
7474

75-
&--id {
76-
width: 140px;
77-
}
78-
7975
&--break-word {
8076
word-break: break-all;
8177
}
8278
}
8379

84-
.table__cell--name {
85-
word-break: break-all;
86-
}
87-
8880
.table__cell--percentage {
8981
display: flex;
9082
align-items: center;

admin/tests/integration/components/team/list-test.gjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import List from 'pix-admin/components/team/list';
44
import { module, test } from 'qunit';
55
import sinon from 'sinon';
66

7-
import setupIntlRenderingTest, {t} from '../../../helpers/setup-intl-rendering';
7+
import setupIntlRenderingTest, { t } from '../../../helpers/setup-intl-rendering';
88
import { waitForDialogClose } from '../../../helpers/wait-for.js';
99

1010
module('Integration | Component | team | list', function (hooks) {
@@ -28,8 +28,8 @@ module('Integration | Component | team | list', function (hooks) {
2828

2929
// then
3030
const table = screen.getByRole('table', { name: t('pages.team.table.caption') });
31-
assert.dom(within(table).getByRole('cell', { name: 'marie.tim@example.net'})).exists();
32-
assert.dom(within(table).getByRole('cell', { name: 'SUPER_ADMIN'})).exists();
31+
assert.dom(within(table).getByRole('cell', { name: 'marie.tim@example.net' })).exists();
32+
assert.dom(within(table).getByRole('cell', { name: 'SUPER_ADMIN' })).exists();
3333
});
3434

3535
test('should display action buttons for a member', async function (assert) {

0 commit comments

Comments
 (0)