mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 15:02:23 +00:00
10245949b2
Add styling to the licenses table to make it easier to read. WTD-669.
33 lines
1000 B
HTML
33 lines
1000 B
HTML
<style>
|
|
.licenses { padding: 1em; }
|
|
.licenses th { font-weight: bold; padding: 0.5em; }
|
|
.licenses td { padding: 0.5em; }
|
|
</style>
|
|
|
|
<div ng-controller="LicenseController as lc" class="licenses">
|
|
|
|
<p>
|
|
This software includes components released under the following licenses.
|
|
</p>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Version</th>
|
|
<th>Author</th>
|
|
<th>Description</th>
|
|
<th>License</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody style="font-weight: normal;">
|
|
<tr ng-repeat="license in lc.licenses()">
|
|
<td><a ng-href="{{license.website}}">{{license.name}}</a></td>
|
|
<td>{{license.version}}</td>
|
|
<td>{{license.author}}</td>
|
|
<td>{{license.description}}</td>
|
|
<td><a ng-href="{{license.link}}">{{license.license}}</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |