Skip to content

Commit dff90db

Browse files
jamezpclaude
andcommitted
Fix download button visibility and improve features checklist layout
Removes conflicting CSS rule causing download button text to be invisible in light mode. Improves features checklist with better spacing, consistent box sizing, and moves checkmarks away from the edge for a cleaner look. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Signed-off-by: James R. Perkins <jperkins@ibm.com>
1 parent 54463ef commit dff90db

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

public/css/bootstrap-theme.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -764,9 +764,7 @@ table tbody tr:hover,
764764

765765
/* Links in tables */
766766
table td a,
767-
.simpletablestyle td a,
768-
table td a.td-download,
769-
.simpletablestyle td a.td-download {
767+
.simpletablestyle td a {
770768
color: var(--resteasy-primary) !important;
771769
text-decoration: none !important;
772770
font-weight: 500 !important;
@@ -1538,8 +1536,8 @@ table tbody tr:last-child td,
15381536
#proj_checklist ul,
15391537
.proj_checklist ul {
15401538
display: grid !important;
1541-
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
1542-
gap: 0.5rem 2rem !important;
1539+
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
1540+
gap: 0.75rem 2rem !important;
15431541
margin: 0 !important;
15441542
padding: 0 !important;
15451543
list-style: none !important;
@@ -1550,17 +1548,19 @@ table tbody tr:last-child td,
15501548
list-style: none !important;
15511549
background: none !important;
15521550
background-image: none !important;
1553-
padding-left: 1.75rem !important;
1551+
padding-left: 2rem !important;
1552+
padding-right: 0.5rem !important;
15541553
margin: 0 !important;
15551554
line-height: 1.6 !important;
15561555
position: relative !important;
1556+
min-height: 1.6em !important;
15571557
}
15581558

15591559
#proj_checklist ul li::before,
15601560
.proj_checklist ul li::before {
15611561
content: "✓" !important;
15621562
position: absolute !important;
1563-
left: 0 !important;
1563+
left: 0.5rem !important;
15641564
color: #28a745 !important;
15651565
font-weight: bold !important;
15661566
font-size: 1.1rem !important;

0 commit comments

Comments
 (0)