bugfixes design & translation
This commit is contained in:
parent
0de441ff99
commit
02c40f31cd
3 changed files with 13 additions and 10 deletions
|
|
@ -5,7 +5,7 @@ section {
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: calc(100% - 12px);
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialog {
|
.dialog {
|
||||||
|
|
@ -24,7 +24,8 @@ section {
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-task-overlay-content {
|
.edit-task-overlay-content {
|
||||||
height: calc(700px - 128px);
|
max-height: calc(700px - 148px);
|
||||||
|
height: fit-content;
|
||||||
padding: 0 6px;
|
padding: 0 6px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
@ -194,7 +195,7 @@ p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.subtasks {
|
.subtasks {
|
||||||
max-height: 130px;
|
max-height: 110px;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
.single-subtask {
|
.single-subtask {
|
||||||
|
|
@ -325,14 +326,15 @@ p {
|
||||||
width: calc(100%);
|
width: calc(100%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media screen and (max-width: 560px) {
|
||||||
@media screen and (max-width: 480px) {
|
|
||||||
.btn-text {
|
.btn-text {
|
||||||
span {
|
span {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 480px) {
|
||||||
.headline {
|
.headline {
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
.title {
|
.title {
|
||||||
|
|
|
||||||
|
|
@ -178,13 +178,14 @@
|
||||||
|
|
||||||
@media screen and (max-width: 910px) {
|
@media screen and (max-width: 910px) {
|
||||||
.left-frame {
|
.left-frame {
|
||||||
|
top: 80px;
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 80px;
|
bottom: 80px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right-frame {
|
.right-frame {
|
||||||
top: 96px;
|
top: 80px;
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 80px;
|
bottom: 80px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -118,11 +118,11 @@
|
||||||
"category": "Kategorie",
|
"category": "Kategorie",
|
||||||
"categorySelection": "Aufgabenkategorie wählen",
|
"categorySelection": "Aufgabenkategorie wählen",
|
||||||
"subtask": "Unteraufgaben",
|
"subtask": "Unteraufgaben",
|
||||||
"subtaskFormField": "Neue Unteraufgabe hinzufügen",
|
"subtaskFormField": "Unteraufgabe hinzufügen",
|
||||||
"clear": "Neu",
|
"clear": "Leeren",
|
||||||
"delete": "Löschen",
|
"delete": "Löschen",
|
||||||
"update": "Aufgabe aktualisieren",
|
"update": "Aktualisieren",
|
||||||
"create": "Aufgabe erstellen",
|
"create": "Erstellen",
|
||||||
"titleError": "Sie müssen einen Titel eingeben!",
|
"titleError": "Sie müssen einen Titel eingeben!",
|
||||||
"descriptionError": "Sie müssen eine Beschreibung eingeben! (mind. 10 Buchstaben)",
|
"descriptionError": "Sie müssen eine Beschreibung eingeben! (mind. 10 Buchstaben)",
|
||||||
"dateError0": "Sie müssen ein Datum eingeben!",
|
"dateError0": "Sie müssen ein Datum eingeben!",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue