Projet

Général

Profil

0001-css-don-t-hide-cell-picture-when-cell-has-foldable-o.patch

Thomas Jund, 14 mai 2020 12:30

Télécharger (771 octets)

Voir les différences:

Subject: [PATCH] css: don't hide cell picture when cell has foldable option
 (#42868)

 static/includes/_cells.scss | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
static/includes/_cells.scss
724 724
			&::after {
725 725
				content: "\f107";  // angle-down
726 726
			}
727
			@if $cell-image-position == top {
728
				+ picture {
729
					display: block;
730
				}
731
			}
732 727
		}
733
		> div > * {
728
		> div > *:not(picture) {
734 729
			display: none;
735 730
		}
736 731
	}
737
-