Table sizing minor fixes

This commit is contained in:
Roman Gotsiy 2015-10-22 21:50:26 +03:00
parent b07fd26647
commit f7958644cb
3 changed files with 20 additions and 4 deletions

View File

@ -10,6 +10,14 @@ table {
border: 2px solid #1976D3;
}
td.param-name {
width: 20%;
}
td.param-description {
width: 30%;
}
thead tr:first-child {
background: #1976D3;
color: #fff;
@ -29,7 +37,7 @@ tbody td {
td, th {
vertical-align: top;
padding: 10px 15px;
padding: 10px 10px;
font-size: 12px;
}

View File

@ -8,6 +8,14 @@ table {
border: 2px solid green;
}
th.response-code {
width: 10%;
}
th.response-description {
width: 30%;
}
thead tr:first-child {
background: green;
color: #fff;
@ -27,7 +35,7 @@ tbody td {
td, th {
vertical-align: top;
padding: 10px 15px;
padding: 10px 10px;
font-size: 12px;
}

View File

@ -4,8 +4,8 @@
<th colspan="3"> Responses </th>
</tr>
<tr>
<th> Response code </th>
<th> Description </th>
<th class="response-code"> Code </th>
<th class="response-description"> Description </th>
<th> Response schema </th>
</tr>
</thead>