Skip to content

Commit 78b1f23

Browse files
committed
Dropdown lesbar gemacht
1 parent 47f5238 commit 78b1f23

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,13 @@
228228
border-color: var(--color-gold-border) !important;
229229
}
230230
}
231+
.auto-plan-select option {
232+
background-color: #334155;
233+
}
231234

235+
.auto-plan-select:focus {
236+
background-color: #792904;
237+
}
232238
/* Leere Zeilen etwas ausgrauen (Optional, wenn Value leer ist - per JS schwer, aber CSS :empty geht nicht auf Values) */
233239
/* Workaround: Wir machen den Placeholder-Text grau */
234240
.assignment-select option[value=""] {

static/cd-auto-planner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ window.CD_AUTO_PLANNER = (function() {
14271427
}
14281428

14291429
if (window.updatePlannerSummary) setTimeout(window.updatePlannerSummary, 200);
1430-
var msg = exported + ' Zeilen exportiert (1 Firebase-Write)!';
1430+
var msg = exported + ' Zeilen exportiert!';
14311431
if (skipped > 0) msg += '\n⚠ ' + skipped + ' CDs nicht im Dropdown.';
14321432
if (window.showModal) window.showModal(msg);
14331433
}

0 commit comments

Comments
 (0)