Changes for page Home

Last modified by Benjamin Fischer on 2025/06/04 14:20

From version 72.66
edited by Benjamin Fischer
on 2024/11/07 13:06
Change comment: There is no comment for this version
To version 72.72
edited by Benjamin Fischer
on 2024/11/07 13:34
Change comment: There is no comment for this version

Summary

Details

XWiki.JavaScriptExtension[0]
Code
... ... @@ -52,9 +52,9 @@
52 52   const md = me.diff(ms, "days");
53 53   const mv = yv.filter(t => ms.isBefore(t.end) && t.start.isBefore(me));
54 54  
55 - if (df) cols.push(E("col", {class: "fc-fitCol fc-fade fc-dayVal"}));
56 - cols.push(E("col"));
57 - if (wf) cols.push(E("col", {class: "fc-fitCol fc-fade fc-weekVal"}));
55 + if (df) cols.push(E("col", {class: "fc-fitCol fc-fade fc-borderLeft"}));
56 + cols.push(E("col"), {class: df ? null : "fc-borderLeft"});
57 + if (wf) cols.push(E("col", {class: "fc-fitCol fc-fade"}));
58 58   head.push(E("th", {colspan}, ms.format(cf)));
59 59  
60 60   const bgc = new Array(md);
XWiki.StyleSheetExtension[0]
Code
... ... @@ -2,29 +2,29 @@
2 2   td.fc-sat, td.fc-sun {
3 3   background-color: #f5f5f5;
4 4   }
5 -
6 - .fc-month-cols-view .fc-body {
7 - td {
8 - position: relative;
9 - & > div {
10 - position: absolute;
11 - width: 100%;
12 - }
13 - }
5 + .fc-month-cols-view > table {
6 + table-layout: auto;
7 + border-width: 0px;
14 14   col.fc-fitCol {
15 - width: 10px;
16 - &.fc-dayVal {
17 - border-right: 0px;
18 - }
19 - &.fc-weekVal {
20 - border-left: 0px;
21 - }
9 + width: 1px;
22 22   }
23 - td.fc-weekVal {
24 - text-align: right;
11 + col.fc-borderLeft {
12 + border-left-width: 1px;
25 25   }
26 - .fc-fade {
27 - opacity: 0.3;
28 - }
14 + .fc-body {
15 + td {
16 + position: relative;
17 + & > div {
18 + position: absolute;
19 + width: 100%;
20 + }
21 + }
22 + td.fc-weekVal {
23 + text-align: right;
24 + }
25 + .fc-fade {
26 + opacity: 0.3;
27 + }
28 + }
29 29   }
30 30  }