Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions website/dimensions.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
}
th, td {
border: 1px solid #ddd;
padding: 12px 18px;
padding: 2px 18px;
text-align: left;
vertical-align: top;
font-size: 14px;
font-size: 12px;
word-break: break-word;
}
th {
background-color: #1E90FF;
color: white;
font-size: 17px;
font-size: 13px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
Expand Down Expand Up @@ -152,8 +152,8 @@ <h2>Research Software Quality Dimensions</h2>
<table id="json-table">
<colgroup>
<col style="width: 25%;"> <!-- Name -->
<col style="width: 20%;"> <!-- Abbreviation -->
<col style="width: 40%;"> <!-- Description -->
<col style="width: 12%;"> <!-- Abbreviation -->
<col style="width: 48%;"> <!-- Description -->
<col style="width: 15%;"> <!-- Source -->
</colgroup>
<thead>
Expand Down Expand Up @@ -214,7 +214,7 @@ <h2>Research Software Quality Dimensions</h2>
const nameCell = document.createElement("td");
if (data.name && rowId !== "no_id") {
const nameLink = document.createElement("a");
nameLink.href = data.identifier;
nameLink.href = data["@id"];
nameLink.textContent = data.name;
nameLink.style.color = "#1E90FF";
nameLink.style.marginRight = "8px";
Expand Down
10 changes: 5 additions & 5 deletions website/indicators.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@
}
th, td {
border: 1px solid #ddd;
padding: 12px 18px;
padding: 4px 18px;
text-align: left;
vertical-align: top;
font-size: 14px;
font-size: 12px;
word-break: break-word;
}
th {
background-color: #1E90FF;
color: white;
font-size: 17px;
font-size: 13px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
Expand Down Expand Up @@ -183,8 +183,8 @@ <h2>Research Software Quality Indicators</h2>
<col style="width: 16%;"> <!-- Name -->
<col style="width: 12%;"> <!-- Abbreviation -->
<col style="width: 12%;"> <!-- Keywords -->
<col style="width: 24%;"> <!-- Quality Dimension -->
<col style="width: 24%;"> <!-- Description -->
<col style="width: 10%;"> <!-- Quality Dimension -->
<col style="width: 38%;"> <!-- Description -->
<col style="width: 12%;"> <!-- Source -->
</colgroup>
<thead>
Expand Down