div.sysdebug div.body div.event div.trace
{
	svg.toggle
	{
		margin-left:-20px;
		flex: 0 0 40px;
		circle {
			fill:	orange;
			stroke: orange;
			opacity: 0.5;
		}
	}

	div.callers{
		flex-direction: column;
		span.fold
		{
			margin-left:auto;
		}
		span.args{
			padding:0;
			&::before{
				color:yellowgreen;
				content:'(';
			}
			&::after{
				color:yellowgreen;
				content:')';
			}
		}
		span.arg{
			color:lightblue;
			&:not(:first-child)::before{
				color:yellowgreen;
				content:',';
			}

		}
		div.caller{
			opacity:0.7;
			align-content: flex-start;
			span.line {
				display: flex;
				&::before{
					content:'>';
					color:yellowgreen;
					flex-grow: 1;
				}
				color:orange;
				min-width: 47px;
				&::after{
					content:'@';
					color:yellowgreen;
				}
			}
			span.path{
				white-space: nowrap;
			}
			span.file{
				color:orange;
			}
			span.object{
				margin-left:20px;
			}
			&:hover {
				opacity:1;
			}
			&.link {
				cursor:pointer;
			}
		}
	}
}
div.sysdebug.js  div.body  div.event div.trace
{
	span.args,
	span.static
	{
		display: none;
	}
}