Add proper CSS styling for Plugin Development Guide link button

- Add specific CSS rules for a.view-btn to ensure proper styling
- Help button now displays correctly next to Plugin Store button
- Matches styling of other view toggle buttons (hover effects, colors)
- Button is clearly visible and accessible for users
This commit is contained in:
master3395
2026-01-20 01:11:09 +01:00
parent 4d037b902d
commit 8c7e54a5a2

View File

@@ -380,6 +380,21 @@
border-color: #5856d6;
}
/* Style links that use view-btn class */
a.view-btn {
color: var(--text-secondary, #64748b);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
}
a.view-btn:hover {
background: var(--bg-hover, #f8f9ff);
color: #5856d6;
border-color: #5856d6;
}
/* Alert Messages */
.alert {
padding: 15px 20px;