Spaces:
Running
Running
openhands openhands commited on
Commit ·
0e8d4cc
1
Parent(s): c623c88
Remove glow effect from OpenHands logo in dark mode
Browse filesThe OpenHands logo is designed for dark backgrounds, so it doesn't need
the circular glow effect that other company logos require for visibility.
Co-authored-by: openhands <openhands@all-hands.dev>
- content.py +3 -2
content.py
CHANGED
|
@@ -1152,9 +1152,10 @@ h3 .header-link-icon {
|
|
| 1152 |
drop-shadow(0 0 8px rgba(160, 165, 180, 0.9));
|
| 1153 |
}
|
| 1154 |
|
| 1155 |
-
/* Re-invert the OpenHands logo at bottom
|
|
|
|
| 1156 |
.dark .js-plotly-plot image[href*="openhands"] {
|
| 1157 |
-
filter: invert(1) hue-rotate(180deg);
|
| 1158 |
}
|
| 1159 |
|
| 1160 |
/* Modebar icons need re-inversion */
|
|
|
|
| 1152 |
drop-shadow(0 0 8px rgba(160, 165, 180, 0.9));
|
| 1153 |
}
|
| 1154 |
|
| 1155 |
+
/* Re-invert the OpenHands logo at bottom - no glow needed as it's designed for dark backgrounds */
|
| 1156 |
+
.dark .js-plotly-plot image[xlink\\:href*="openhands"],
|
| 1157 |
.dark .js-plotly-plot image[href*="openhands"] {
|
| 1158 |
+
filter: invert(1) hue-rotate(180deg) !important;
|
| 1159 |
}
|
| 1160 |
|
| 1161 |
/* Modebar icons need re-inversion */
|