fix: replace gradient backgrounds with solid orange for HF buttons
Changed all Hugging Face buttons from bg-gradient-to-r (which wasn't rendering) to solid bg-orange-600 for proper visibility. The gradient classes were showing as white-on-white. Affected pages: - index.html: Hero section HF CTA - researcher.html: Collaboration section HF link - architecture.html: Interactive exploration section HF button Now using bg-orange-600 hover:bg-orange-700 for consistent, visible styling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
12a21aeab3
commit
b2e1c47d7a
3 changed files with 3 additions and 3 deletions
|
|
@ -411,7 +411,7 @@
|
||||||
<a href="https://huggingface.co/spaces/tractatus-framework/audit-log-viewer"
|
<a href="https://huggingface.co/spaces/tractatus-framework/audit-log-viewer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="inline-block bg-gradient-to-r from-yellow-500 to-orange-500 text-white px-8 py-4 rounded-lg font-bold text-lg hover:from-yellow-600 hover:to-orange-600 transition shadow-lg hover:shadow-xl"
|
class="inline-block bg-orange-600 text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-orange-700 transition shadow-lg hover:shadow-xl"
|
||||||
data-i18n="interactive_exploration.hf_cta">
|
data-i18n="interactive_exploration.hf_cta">
|
||||||
🤗 Launch Interactive Explorer on Hugging Face
|
🤗 Launch Interactive Explorer on Hugging Face
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
<a href="https://huggingface.co/spaces/tractatus-framework/audit-log-viewer"
|
<a href="https://huggingface.co/spaces/tractatus-framework/audit-log-viewer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="inline-block px-8 py-3 rounded-lg font-semibold transition-all duration-300 bg-gradient-to-r from-yellow-500 to-orange-500 text-white hover:shadow-lg hover:-translate-y-1"
|
class="inline-block px-8 py-3 rounded-lg font-semibold transition-all duration-300 bg-orange-600 text-white hover:bg-orange-700 hover:shadow-lg hover:-translate-y-1"
|
||||||
data-i18n="hero.cta_hf_space">🤗 Explore Audit Logs</a>
|
data-i18n="hero.cta_hf_space">🤗 Explore Audit Logs</a>
|
||||||
<a href="/faq.html"
|
<a href="/faq.html"
|
||||||
class="btn-base btn-validator inline-block"
|
class="btn-base btn-validator inline-block"
|
||||||
|
|
|
||||||
|
|
@ -215,7 +215,7 @@
|
||||||
<a href="https://huggingface.co/spaces/tractatus-framework/audit-log-viewer"
|
<a href="https://huggingface.co/spaces/tractatus-framework/audit-log-viewer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="inline-block bg-gradient-to-r from-yellow-500 to-orange-500 text-white px-4 py-2 rounded-lg font-semibold hover:from-yellow-600 hover:to-orange-600 transition text-sm">
|
class="inline-block bg-orange-600 text-white px-4 py-2 rounded-lg font-semibold hover:bg-orange-700 transition text-sm">
|
||||||
<span data-i18n="alexander_research.hf_space_link">🤗 Explore 3,942 Audit Decisions on HF →</span>
|
<span data-i18n="alexander_research.hf_space_link">🤗 Explore 3,942 Audit Decisions on HF →</span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/about/values.html" class="inline-block bg-gray-200 text-gray-900 px-4 py-2 rounded-lg font-semibold hover:bg-gray-300 transition text-sm">
|
<a href="/about/values.html" class="inline-block bg-gray-200 text-gray-900 px-4 py-2 rounded-lg font-semibold hover:bg-gray-300 transition text-sm">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue