Projet

Général

Profil

0001-cells-add-class-for-folded-and-foldable-cells-19496.patch

Josué Kouka, 18 octobre 2017 11:33

Télécharger (1,06 ko)

Voir les différences:

Subject: [PATCH] cells: add class for folded and foldable cells (#19496)

 static/includes/_cells.scss | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
static/includes/_cells.scss
543 543
		}
544 544
	}
545 545
}
546

  
547
/* foldable and folded cell style */
548
div.cell {
549
    &.folded {
550
        div h2 {
551
            &::after {
552
                font-family: FontAwesome;
553
                content: "\f107";
554
                position: absolute;
555
                right: 1em;
556
            }
557
        }
558
    }
559
    &.foldable {
560
        div h2 {
561
            &::after {
562
                font-family: FontAwesome;
563
                content: "\f106";
564
                position: absolute;
565
                right: 1em;
566
            }
567
        }
568
    }
569
}
546
-