Projet

Général

Profil

0001-CSS-don-t-switch-title-display-prop-when-cell-is-fol.patch

Thomas Jund, 04 novembre 2021 17:29

Télécharger (799 octets)

Voir les différences:

Subject: [PATCH] CSS: don't switch %title display prop when cell is folded
 (#58396)

 static/includes/_cells.scss | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
static/includes/_cells.scss
756 756
	}
757 757
	&.foldable.folded {
758 758
		> div > h2:first-child {
759
			display: block;
760 759
			&::after {
761 760
				content: $cell-open-foldable-icon;
762 761
			}
763
		}
764
		> div > *:not(picture) {
765
			display: none;
762

  
763
			& ~ *:not(picture) {
764
				display: none;
765
			}
766 766
		}
767 767
	}
768 768
}
769
-