Skip to content

Commit

Permalink
Fix TaskCreateDialog and Multiselect appearance
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <[email protected]>
  • Loading branch information
raimund-schluessler committed Oct 13, 2022
1 parent 5666eb6 commit 1449a36
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
2 changes: 2 additions & 0 deletions src/components/AppSidebar/CalendarPickerItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export default {
.multiselect__tags {
border: 1px solid transparent;
height: 44px;
padding: 0 !important;

.multiselect__single {
padding: 0;
Expand All @@ -133,6 +134,7 @@ export default {
position: absolute !important;
font-weight: bold;
font-size: var(--default-font-size);
line-height: 44px;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/components/AppSidebar/MultiselectItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export default {
.multiselect__tags {
border: 1px solid transparent;
height: 44px;
padding: 0 !important;

.multiselect__single {
padding: 0;
Expand Down
2 changes: 2 additions & 0 deletions src/components/AppSidebar/TagsItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export default {
.multiselect__tags {
border: 1px solid transparent;
height: 44px;
padding: 0 !important;
flex-grow: 1;

.multiselect__single {
Expand All @@ -166,6 +167,7 @@ export default {
position: absolute !important;
font-weight: bold;
font-size: var(--default-font-size);
line-height: 44px;
}

.multiselect__tags-wrap {
Expand Down
23 changes: 10 additions & 13 deletions src/components/TaskCreateDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,8 @@ export default {
.empty-content {
margin: 10vh 0;

::v-deep p {
:deep(.empty-content__action) {
display: flex;
justify-content: flex-end;
}
}
}
Expand All @@ -230,9 +229,8 @@ export default {
border-bottom: none;
margin-bottom: 3px;

:deep(.multiselect) {
border: 1px solid var(--color-border-dark);
border-radius: var(--border-radius);
:deep(.multiselect .multiselect__tags) {
border: 2px solid var(--color-border-dark);
}
}

Expand All @@ -241,15 +239,14 @@ export default {

.material-design-icon {
position: absolute;
top: 12px;
left: 12px;
top: 14px;
left: 14px;
}

input,
textarea {
width: 100%;
font-size: var(--default-font-size);
padding-left: 44px;
padding-left: 44px !important;
}

input {
Expand All @@ -264,10 +261,10 @@ export default {
}
}

.modal-buttons {
display: flex;
justify-content: flex-end;
}
.modal-buttons {
display: flex;
justify-content: flex-end;
}

:deep(.calendar-picker-option__label),
:deep(.property__item .multiselect__tags) input.multiselect__input {
Expand Down

0 comments on commit 1449a36

Please sign in to comment.