Minor font-weight fix

This commit is contained in:
Roman Hotsiy 2016-04-13 14:26:59 +03:00
parent 7562bc41f0
commit 6d2a49fb13
2 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,7 @@
</div>
<div class="param-description" innerHtml="{{prop.description | marked}}"></div>
<div class="discriminator-info" *ngIf="prop.isDiscriminator">
This field value determines the exact schema:
<span>This field value determines the exact schema:</span>
<ul>
<li *ngFor="#derived of schema.derived"
(click)="selectDerived(derived)" [ngClass]="{active: derived.active}"> {{derived.name}} </li>

View File

@ -134,6 +134,11 @@ json-schema[nesteven="true"] {
.discriminator-info {
font-weight: $regular;
margin-bottom: 10px;
> span {
font-size: 0.9em;
font-weight: $light;
}
}
.discriminator-wrap > td {