Axes groupés par période sur les profils utilisateur + fix soulignement des titres de cards liées

This commit is contained in:
2026-07-06 18:55:37 +02:00
parent e30b0baa50
commit 5f682a637b
7 changed files with 116 additions and 39 deletions

View File

@@ -97,7 +97,10 @@ body.pods-modal-window #pods-meta-documents-joints {
/* Axes thématiques checkbox group headers */
body.post-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label,
body.post-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label {
body.post-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label,
body.profile-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label,
body.user-edit-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label,
body.user-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label {
font-size: 0.72rem;
font-weight: 600;
text-transform: uppercase;
@@ -112,11 +115,24 @@ body.post-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label {
width: 100%;
}
body.post-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label:first-child,
body.post-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label:first-child {
body.post-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label:first-child,
body.profile-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label:first-child,
body.user-edit-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label:first-child,
body.user-new-php .pods-form-ui-row-name-axes-thematiques li.axes-group-label:first-child {
border-top: none;
margin-top: 0;
}
/* Sur user-new.php, WP core force `#createuser .form-field input { width: 25em }`.
Les cases à cocher / radios des champs Pods (ex. axes) héritent de cette
largeur : on la réinitialise. */
#adduser .form-field input[type="checkbox"],
#adduser .form-field input[type="radio"],
#createuser .form-field input[type="checkbox"],
#createuser .form-field input[type="radio"] {
width: auto;
}
/* Remove WP's JS-injected padding-top on the editor wrap (compensation for sticky toolbar) */
body.post-php #wp-content-editor-tools,
body.post-new-php #wp-content-editor-tools {

View File

@@ -2131,6 +2131,10 @@ footer {
font-size: 1.25rem; }
.article .main-content-text a {
text-decoration: underline; }
.article .main-content-text .post-card h2::after {
display: none; }
.article .main-content-text .post-card a {
text-decoration: none; }
.article .main-content-text p {
margin-bottom: 1rem;
line-height: 1.4; }