- fuer lehre tab planungsstatus hinzugefuegt

- config fuer planungsstatus
- tags ohne notiz setzen
This commit is contained in:
ma0048
2024-12-03 15:31:32 +01:00
parent 19b56ff252
commit 6a1af1b2dd
2 changed files with 12 additions and 15 deletions
+7 -14
View File
@@ -1,4 +1,4 @@
:is(.tag_notice, .tag_inwork, .tag_planning, .tag_prio_one, .tag_prio_two, .tag_finished) {
:is(.tag_notice, .tag_inwork, .tag_planning, .tag_prio_one, .tag_prio_two, .tag_finished, .display_all) {
display: inline-block;
padding: 5px 10px;
margin-right: 5px;
@@ -13,7 +13,7 @@
}
:is(.tag_notice, .tag_inwork, .tag_planning, .tag_prio_one, .tag_prio_two, .tag_finished):hover {
transform: scale(1.05);
transform: scale(1.15);
}
.tag_notice {
@@ -41,6 +41,11 @@
color: black;
}
.display_all {
background-color: darkgrey !important;
border: none;
}
.dropdown-list {
list-style: none;
@@ -62,18 +67,6 @@
opacity: 0.5;
}
.plus-more-tags {
font-weight: bold;
color: #007bff;
cursor: pointer;
}
.all-tags-modal-content {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.tag-done {
text-decoration: line-through;
}
+5 -1
View File
@@ -95,7 +95,11 @@ export default {
this.tagData.notiz = "";
this.mode = "create";
}
this.$refs.tagModal.show();
if (this.mode === "create" && item.tag)
this.saveTag()
else
this.$refs.tagModal.show();
},
async saveTag()
{