CSS pour les tableaux individuels dans un message

Est-il possible de styliser individuellement les tableaux dans un message ?
Discourse supprime tous les éléments de style du HTML dans un message.

Can you share a screenshot of what you want to do? In discourse you can do pretty much anything you want, but it gets harder the more crazy the idea is

I simply want some tables to have a fixed layout, and some auto layout.
I’m referring to tables created with Markdown, BBCode or HTML in composer.

If you can’t target them by id or class, by position? eg. instead of main-st → smith, main-st → second-house

What I generally do is go up the DOM until I find an ancestor element with an id, or in lieu of that a few elements with classes, and then go to the child element I want to target. If need be, a “first”, “last” or “nth” pseudo-class should do the job.

I think you mean modifying CSS from the admin panel.
What I’m asking is formatting in the composer window.

You will need to write a plugin that exposes the classes you want to allow users to use to format their tables. Once you do that, they can apply the classes to their posts.

If you’re on a recent version of Discourse - as this is a recent change - you can also use data-theme attributes.

For example:

<div data-theme-table="fixed">
	
	<table>
		<thead>
			<tr>
				<th>Col A</th>
				<th>Col B</th>
				<th>Col C</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>A1</td>
				<td>B1</td>
				<td>C1</td>
			</tr>
		</tbody>
	</table>
	
</div>

Or with markdown

<div data-theme-table="fixed">

| Col A | Col B | Col C|
|---|---|---|
| A1 | B1 | C1 |

</div>

Would look like this:

Col A Col B Col C
A1 B1 C1

No difference visually - but can be targeted with CSS like this:

[data-theme-table="fixed"] table {
    background: red;
}

The result is a red background for tables inside divs with the attribute data-theme-table="fixed" but no effect on other tables.

Capture18

So all you need to do is define the CSS once and then use the attributes in posts where you want the styles to apply.

This is exactly what I was looking for. Thank you @Johani

looking at white-lister.js.es6, I notice:

  'div[data-*]', /* This may seem a bit much but polls does
                    it anyway and this is needed for themes,
                    special code in sanitizer handles data-*
                    nothing exists for data-theme-* and we
                    don't want to slow sanitize for this case
                  */

does it mean that div[data-theme-*] is no longer required and we can simply use div[data-*] (e.g. div[data-table-layout])?

Yes, but I’d say to stick with the -theme- prefix for stuff that’s actually handled by a theme.

Yes, you’re correct @BlackKnob, you can use div[data-*] like div[data-table-layout] and it would have the same effect.

However, like @riking said earlier, you’re much better off sticking with div[data-theme-*] since there might be some work in the future to narrow down whitelisted attributes to div[data-theme-*]. When that happens, all of your posts with div[data-*] would need to be updated accordingly.

That’s why using div[data-theme-*] is recommended here, so that you can stay futureproof.

Où dois-je placer le CSS pour cibler le div nommé que j’ai entouré autour du tableau ?
Dois-je créer et installer un thème personnalisé pour pouvoir utiliser cette méthode de mise en forme des tableaux ?

Bon retour @kaefert :wave:

Oui, je vous recommande de le faire.

  1. allez dans admin/customize/themes
  2. cliquez sur Installer
  3. sélectionnez Créer nouveau
  4. donnez-lui un nom et définissez le type sur component
  5. ajoutez votre CSS
  6. ajoutez le composant à vos thèmes actifs en cliquant sur Ajouter à tous les thèmes à côté du paramètre Include_component_on_these_themes sur la page du composant.