-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathTaskForm.scss
68 lines (54 loc) · 1.47 KB
/
TaskForm.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@import '../../../common/variables';
$assignee-dropdown-height: 215px;
.be .bcs-task-input-container {
display: flex;
.bcs-task-input-form-container {
flex: 1;
min-width: 0;
textarea,
.date-picker-input {
width: 100%;
}
.checkbox-container {
// default margin is 20px between form input elements
// this checkbox needs to be 10px below the pill selector input
margin-top: -10px;
}
.bcs-task-add-due-date-input {
margin-right: 0;
margin-left: 0;
.date-picker-wrapper {
width: 166px;
}
}
.bcs-task-name-input {
max-height: 140px;
margin-top: 20px;
margin-bottom: 15px;
}
input.bdl-PillSelector-input--hidden {
width: 1px;
}
.bdl-PillSelectorDropdown {
width: 100%;
margin-left: 0;
.bdl-PillSelector {
width: auto;
}
&.scrollable {
.overlay-wrapper {
position: absolute;
height: $assignee-dropdown-height;
overflow-y: scroll;
border: 1px solid $bdl-gray-30;
}
.overlay {
border: none;
}
}
}
}
.inline-alert {
margin: 0 0 20px 0;
}
}