-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathgantt_chart.css
More file actions
executable file
·80 lines (62 loc) · 1.58 KB
/
gantt_chart.css
File metadata and controls
executable file
·80 lines (62 loc) · 1.58 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
.lwc-datepicker {
display: inline-block;
}
.lwc-datepicker .slds-has-error .slds-form-element__help {
display: none;
}
.lwc-chart_container {
min-width: 725px;
}
.lwc-timeline > .slds-col:first-child {
min-width: 190px;
}
.lwc-timeline_day {
border-bottom: 1px solid #dddbda;
border-right: 1px solid #dddbda;
border-top: 1px solid #dddbda;
width: 50px;
text-align: center;
/* padding-right: 1px; */
}
.lwc-timeline_month-container>div{
position: sticky;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 1;
}
.lwc-timeline_month-container:first-child .lwc-timeline_day:first-child,
.lwc-timeline_month-container:only-child .lwc-timeline_day:first-child {
border-left: 3px solid #dddbda;
}
.lwc-timeline_month-container:last-child .lwc-timeline_day:last-child,
.lwc-timeline_month-container:only-child .lwc-timeline_day:last-child {
border-right: 3px solid #dddbda;
padding-right: 0;
}
.lwc-timeline_day.lwc-is-week-end {
background: rgba(221, 63, 14, 0.1);
border-top: 3px solid #dd2929;
margin-top: 3px;
padding-right: 0;
}
.lwc-timeline_day.lwc-is-today {
background: rgba(21, 137, 238, 0.1);
border-top: 3px solid #1589ee;
margin-top: 3px;
}
.lwc-timeline_day.lwc-is-holiday {
background: rgba(221, 63, 14, 0.1);
border-top: 3px solid #dd2929;
margin-top: 3px;
}
.lwc-timeline_month {
border-radius: .25rem;
}
.slds-form_stacked .slds-form-element > .slds-form-element {
margin-bottom: .25rem;
}
.filter-modal .slds-dropdown[role="listbox"] {
max-height: 150px;
}