From 8c7e54a5a2cfc3ccccdf84df9759dcb525f71347 Mon Sep 17 00:00:00 2001 From: master3395 Date: Tue, 20 Jan 2026 01:11:09 +0100 Subject: [PATCH] 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 --- pluginHolder/templates/pluginHolder/plugins.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pluginHolder/templates/pluginHolder/plugins.html b/pluginHolder/templates/pluginHolder/plugins.html index f1f885e86..2329de30a 100644 --- a/pluginHolder/templates/pluginHolder/plugins.html +++ b/pluginHolder/templates/pluginHolder/plugins.html @@ -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;