Modifications pour le document EditSheet
Modifié par Florent Charton le 2026/03/13 11:04
Depuis la version 5.1
modifié par Florent Charton
sur 2026/01/08 10:59
sur 2026/01/08 10:59
Commentaire de modification :
Install extension [org.xwiki.platform:xwiki-platform-ckeditor-ui/17.4.8]
À la version 6.1
modifié par Florent Charton
sur 2026/01/13 15:01
sur 2026/01/13 15:01
Commentaire de modification :
Install extension [org.xwiki.platform:xwiki-platform-ckeditor-ui/17.10.2]
Résumé
-
Objets (1 modifications, 0 ajouts, 0 suppressions)
Détails
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -179,6 +179,25 @@ 179 179 } 180 180 181 181 /** 182 + * Handle the layout and display of the warning message for headerless tables. 183 + * This message is added by the xwiki-table plugin. 184 + * Some of the default styles are just overridden by the CKEditor reset. 185 + */ 186 +.cke_dialog_container span.box.warningmessage { 187 + .alert-warning; 188 + /* Default warning boxes are not meant to be used in a strict layout like the one of this table dialog. 189 + * We need an extra customization to avoid breaking this layout. */ 190 + white-space: break-spaces; 191 + /* By default, the warning is not shown. */ 192 + display: none; 193 +} 194 + 195 +/* When the value of the previous field is the one we want to avoid, we show the warning. */ 196 +.cke_dialog_container tr:has(select [value=""]:checked) + tr span.box.warningmessage { 197 + display: unset; 198 +} 199 + 200 +/** 182 182 * Link Options Toggle 183 183 */ 184 184