Projet

Général

Profil

0001-scss-remove-icons-from-history-bullets-25329.patch

Frédéric Péters, 18 juillet 2018 22:24

Télécharger (1,65 ko)

Voir les différences:

Subject: [PATCH] scss: remove icons from history bullets (#25329)

 static/includes/_wcs.scss | 44 ++++++++++++++-------------------------
 1 file changed, 16 insertions(+), 28 deletions(-)
static/includes/_wcs.scss
354 354
	box-sizing: border-box;
355 355
	position: absolute;
356 356
	text-align: center;
357
	line-height: 36px;
358
	font-family: FontAwesome;
359
	width: 40px;
360
	height: 40px;
357
	width: 31px;
358
	height: 31px;
361 359
	display: block;
362
	left:  10px;
360
	left:  15px;
363 361
	border-radius: 20px;
364 362
	border: 1px solid #888;
365
	top: 20px;
363
	top: 24px;
366 364
	background: $button-color !important;
367
	color: $button-background !important;
368
}
369

  
370
ul#evolutions li:first-child span.item:before {
371
	content: "\f067"; /* plus */
372
}
373

  
374
ul#evolutions li.msg-system span.item:before {
375
	content: "\f141"; /* ellipsis-h */
376
}
377

  
378
ul#evolutions li.endpoint span.item::before {
379
	content: "\f00c"; /* check */
380
}
381

  
382
ul#evolutions li.endpoint span.item::before {
383
	content: "\f00c"; /* check */
384
}
385

  
386
ul#evolutions li span.item:before {
387
	content: "\f075"; /* comment */
365
	box-shadow: 0 0 0px 5px white;
366
	&::before {
367
		content: "";
368
		display: block;
369
		width: 7px;
370
		height: 7px;
371
		background: $primary-color;
372
		position: relative;
373
		left: 11px;
374
		top: 11px;
375
		border-radius: 5px;
376
	}
388 377
}
389 378

  
390

  
391 379
div.dataview {
392 380
	div.field {
393 381
		margin-bottom: 1ex;
394
-