BhargavMN commited on
Commit ·
5180cb5
1
Parent(s): 777432c
style(theme): make Celebrate card background transparent for improved visual consistency
Browse files- app/ui/theme.py +11 -0
app/ui/theme.py
CHANGED
|
@@ -270,6 +270,17 @@ footer { display: none !important; }
|
|
| 270 |
box-shadow: 0 16px 48px -24px rgba(0,0,0,0.8) !important;
|
| 271 |
}
|
| 272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
/* Final Standings column gets a matching black card so the two
|
| 274 |
columns have equal visual weight. */
|
| 275 |
.cq-win .cq-win-standings {
|
|
|
|
| 270 |
box-shadow: 0 16px 48px -24px rgba(0,0,0,0.8) !important;
|
| 271 |
}
|
| 272 |
|
| 273 |
+
/* Strip the default grey block/form fills from inner wrappers inside the
|
| 274 |
+
Celebrate card so only the black card shows through. Buttons (<button>)
|
| 275 |
+
and the poster drop-zone (.image-container) keep their own styling. */
|
| 276 |
+
.cq-win .cq-win-celebrate > div,
|
| 277 |
+
.cq-win .cq-win-celebrate .form,
|
| 278 |
+
.cq-win .cq-win-celebrate .block:not(.image-container) {
|
| 279 |
+
background: transparent !important;
|
| 280 |
+
border: none !important;
|
| 281 |
+
box-shadow: none !important;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
/* Final Standings column gets a matching black card so the two
|
| 285 |
columns have equal visual weight. */
|
| 286 |
.cq-win .cq-win-standings {
|