This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgroup-custom-work-days.css
More file actions
65 lines (52 loc) · 1.8 KB
/
group-custom-work-days.css
File metadata and controls
65 lines (52 loc) · 1.8 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
.custom-work-days.e-schedule .e-month-view .e-work-days.willsmith,
.custom-work-days.e-schedule .e-vertical-view .e-work-hours.willsmith {
background-color: #faebd7;
}
.custom-work-days.e-schedule .e-month-view .e-work-days.alice,
.custom-work-days.e-schedule .e-vertical-view .e-work-hours.alice {
background-color: #deecfc;
}
.custom-work-days.e-schedule .e-month-view .e-work-days.robson,
.custom-work-days.e-schedule .e-vertical-view .e-work-hours.robson {
background-color: #deeeac;
}
.custom-work-days.e-schedule .e-vertical-view .e-resource-cells {
height: 62px;
}
.custom-work-days.e-schedule .template-wrap {
display: flex;
text-align: left;
}
.custom-work-days.e-schedule .template-wrap .resource-image {
background-repeat: no-repeat;
background-size: 45px;
height: 45px;
width: 45px;
}
.custom-work-days.e-schedule .template-wrap .resource-details {
padding-left: 10px;
}
.custom-work-days.e-schedule .template-wrap .resource-details .resource-name {
font-size: 16px;
font-weight: 500;
margin-top: 5px;
}
.custom-work-days.e-schedule.e-device .template-wrap .resource-details .resource-name {
font-size: inherit;
font-weight: inherit;
}
.custom-work-days.e-schedule.e-device .e-resource-tree-popup .e-fullrow {
height: 50px;
}
.custom-work-days.e-schedule.e-device .template-wrap .resource-details .resource-designation {
display: none;
}
.custom-work-days.e-schedule .template-wrap .resource-image.will-smith {
background-image: url('./src/schedule/images/will-smith.png');
}
.custom-work-days.e-schedule .template-wrap .resource-image.alice {
background-image: url('./src/schedule/images/alice.png');
}
.custom-work-days.e-schedule .template-wrap .resource-image.robson {
background-image: url('./src/schedule/images/robson.png');
}