tasto back e bugfix editor

This commit is contained in:
David Frassi
2026-06-18 13:55:55 +02:00
parent d4a52a8fbf
commit 68d455289d
9 changed files with 471 additions and 19 deletions
+30
View File
@@ -383,6 +383,12 @@ ion-title {
color: #ffffff !important;
background: rgba(255, 255, 255, 0.2) !important;
}
.playlist-name-input {
color: #000000 !important;
&::placeholder {
color: rgba(0, 0, 0, 0.6) !important;
}
}
}
// Custom Item Layout
@@ -676,6 +682,30 @@ ion-title {
font-size: 1.2rem;
}
}
.playlist-name-input {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 10px;
color: white;
margin: 0 4px;
padding: 2px 8px;
font-size: 0.8rem;
width: 120px;
height: 24px;
outline: none;
transition: all 0.2s ease;
&:focus {
border-color: var(--ion-color-secondary);
background: rgba(255, 255, 255, 0.12);
box-shadow: 0 0 6px rgba(var(--ion-color-secondary-rgb), 0.2);
}
&::placeholder {
color: rgba(255, 255, 255, 0.4);
}
}
}
.small-action-btn {