Skip to content

Commit c128777

Browse files
committed
Optimize Doc CI badge and adjust column widths
Changes: - Changed Doc CI badge to shields.io format (more compact) - Reduced label from 'Docs' to 'D' to save space - Kept clickable link around badge (links to GitHub Actions) - Adjusted column widths for better balance: * Doc CI: 14% → 10% (narrower due to compact badge) * Issues: 12% → 14% (wider to accommodate content) - Badge now uses workflow status endpoint instead of GitHub native badge
1 parent 3d5929d commit c128777

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

assets/js/tablecommon.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8292,9 +8292,9 @@ function addRDoc(repo) {
82928292
const CI_doc_image = document.createElement('img');
82938293
CI_doc_image.setAttribute(
82948294
'src',
8295-
'https://github.com/giellalt/' +
8295+
'https://img.shields.io/github/actions/workflow/status/giellalt/' +
82968296
repo.name +
8297-
'/workflows/Docs/badge.svg'
8297+
'/docs.yml?label=D'
82988298
);
82998299
CI_doc_image.setAttribute('alt', 'Doc Build Status');
83008300
a_CI_doc.appendChild(CI_doc_image);
@@ -8334,10 +8334,10 @@ function addTableHeader(fromLangRepoTable = false) {
83348334

83358335
let heading_3 = document.createElement('th');
83368336
heading_3.innerHTML = 'Issues';
8337-
heading_3.setAttribute('style', 'width: 12%;');
8337+
heading_3.setAttribute('style', 'width: 14%;');
83388338
let heading_4 = document.createElement('th');
83398339
heading_4.innerHTML = 'Doc Ci';
8340-
heading_4.setAttribute('style', 'width: 14%;');
8340+
heading_4.setAttribute('style', 'width: 10%;');
83418341
let heading_5 = document.createElement('th');
83428342
heading_5.innerHTML = 'Core CI';
83438343
heading_5.setAttribute('style', 'width: 12%;');

0 commit comments

Comments
 (0)