Projet

Général

Profil

0001-misc-remove-icons-from-history-bullets-25639.patch

Frédéric Péters, 12 août 2018 11:59

Télécharger (1,71 ko)

Voir les différences:

Subject: [PATCH] misc: remove icons from history bullets (#25639)

 wcs/qommon/static/css/qommon.css | 37 +++++++++-----------------------
 1 file changed, 10 insertions(+), 27 deletions(-)
wcs/qommon/static/css/qommon.css
476 476
	content: "";
477 477
	background: #bbb;
478 478
	position: absolute;
479
	width: 5px;
480
	top: 40px;
481
	left: 28px;
479
	width: 1px;
480
	top: 42px;
481
	left: 31px;
482 482
	height: calc(100% - 40px);
483 483
	z-index: 0;
484 484
	border-radius: 3px;
......
498 498
	position: absolute;
499 499
	width: 100px;
500 500
	left: 30px;
501
	top: 40px;
502
	height: 5px;
501
	top: 42px;
502
	height: 1px;
503 503
	z-index: -10;
504 504
}
505 505

  
......
567 567
	/* left circle icon */
568 568
	position: absolute;
569 569
	text-align: center;
570
	line-height: 40px;
571 570
	color: #666;
572
	font-family: FontAwesome;
573
	width: 40px;
574
	height: 40px;
571
	width: 31px;
572
	height: 31px;
575 573
	display: block;
576
	left:  10px;
574
	left: 15px;
577 575
	border-radius: 20px;
578 576
	border: 1px solid #aaa;
579
	top: 20px;
580
}
581

  
582
ul#evolutions li:first-child span.item:before {
583
	content: "\f067"; /* plus */
584
}
585

  
586
ul#evolutions li.msg-system span.item:before {
587
	content: "\f141"; /* ellipsis-h */
588
}
589

  
590
ul#evolutions li.endpoint span.item::before {
591
	content: "\f00c"; /* check */
592
}
593

  
594
ul#evolutions li span.item:before {
595
	content: "\f075"; /* comment */
577
	top: 26px;
578
	box-shadow: 0 0 0px 5px white;
596 579
}
597 580

  
598 581
div.halfwidth {
599
-