Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
fix latest
Browse files Browse the repository at this point in the history
  • Loading branch information
achalvs committed Aug 6, 2018
1 parent 86c3f07 commit 1689f44
Showing 1 changed file with 50 additions and 5 deletions.
55 changes: 50 additions & 5 deletions example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -307,20 +307,65 @@
content: '✕';
}

button[disabled] {
color: #d2d2d2 !important;
}

.field.field-array-of-string legend::after {
content: 'array of strings';
background: #f2f2f2;
border-radius: 3px;
font-family: monospace;
font-size: 11px;
font-weight: lighter;
margin-left: 10px;
padding: 3px;
}

.field.field-array-of-integer legend::after {
content: 'array of integers';
background: #f2f2f2;
border-radius: 3px;
font-family: monospace;
font-size: 11px;
font-weight: lighter;
margin-left: 10px;
padding: 3px;
}

.field.field-array-of-object legend::after {
content: 'array of objects';
background: #f2f2f2;
border-radius: 3px;
font-family: monospace;
font-size: 11px;
font-weight: lighter;
margin-left: 10px;
padding: 3px;
}


.field.field-integer label::after {
content: 'integer';
background: #f2f2f2;
border-radius: 3px;
font-family: monospace;
font-size: 11px;
font-weight: lighter;
float: right;
margin-right: 3%;
margin-left: 10px;
padding: 3px;
}

.field.field-string label::after {
content: 'string';
background: #f2f2f2;
border-radius: 3px;
font-family: monospace;
font-size: 11px;
font-weight: lighter;
float: right;
margin-right: 3%;
margin-left: 10px;
padding: 3px;
}

/*TODO fix this*/
/*.array-item .field-string::before {
content: 'string';
Expand Down

0 comments on commit 1689f44

Please sign in to comment.