bugfixes
This commit is contained in:
parent
0aba24ada5
commit
af28af304e
3 changed files with 8 additions and 4 deletions
|
|
@ -35,7 +35,7 @@
|
||||||
<p>Description<span class="red-dot">*</span></p>
|
<p>Description<span class="red-dot">*</span></p>
|
||||||
<textarea
|
<textarea
|
||||||
id="description"
|
id="description"
|
||||||
rows="6"
|
rows="5"
|
||||||
name="description"
|
name="description"
|
||||||
#description="ngModel"
|
#description="ngModel"
|
||||||
minlength="10"
|
minlength="10"
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,10 @@ export class AddTaskComponent {
|
||||||
@HostListener('document:click', ['$event'])
|
@HostListener('document:click', ['$event'])
|
||||||
checkOpenNavbar(event: MouseEvent) {
|
checkOpenNavbar(event: MouseEvent) {
|
||||||
const targetElement = event.target as HTMLElement;
|
const targetElement = event.target as HTMLElement;
|
||||||
if (!targetElement.closest('.search-assigned')) {
|
if (
|
||||||
|
!targetElement.closest('.search-assigned') &&
|
||||||
|
!targetElement.closest('app-assigned')
|
||||||
|
) {
|
||||||
this.isAssignedOpen = false;
|
this.isAssignedOpen = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,18 +5,19 @@ section {
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
max-height: 150px;
|
||||||
padding-top: 12px;
|
padding-top: 12px;
|
||||||
border-radius: 0px 0px 20px 20px;
|
border-radius: 0px 0px 20px 20px;
|
||||||
border: 1px solid var(--light-gray);
|
border: 1px solid var(--light-gray);
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
background-color: var(--white);
|
background-color: var(--white);
|
||||||
overflow: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 12px 18px;
|
padding: 6px 12px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: var(--light-gray);
|
background-color: var(--light-gray);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue