Fossil

Check-in [6c27f4136e]
Login

Check-in [6c27f4136e]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Make the horisontal line for lcosed leafes thinner.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | indicate-closed-branches-in-timeline
Files: files | file ages | folders
SHA3-256: 6c27f4136eed368776b10d7f6b3461f9c1afd040c19cacc58a4ee7985e3483b8
User & Date: preben 2023-09-27 05:28:48.907
Context
2023-09-27
11:24
Draw an X instead of a horizontal line. Uses SVG as attempts with characters differed wildly among browsers. ... (check-in: 63785bd911 user: preben tags: indicate-closed-branches-in-timeline)
05:28
Make the horisontal line for lcosed leafes thinner. ... (check-in: 6c27f4136e user: preben tags: indicate-closed-branches-in-timeline)
2023-09-26
13:03
Allow styling leaves of closed branches in /timeline. ... (check-in: e042be53cf user: preben tags: indicate-closed-branches-in-timeline)
Changes
Unified Diff Ignore Whitespace Patch
Changes to skins/ardoise/css.txt.
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
  width: 4px;
  height: 4px;
  background: #bbb
}
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0px;
  width: 10px;
  height: 4px;
  background: #bbb
  border-radius: 0%;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 1px;







|


|







1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
  width: 4px;
  height: 4px;
  background: #bbb
}
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0px;
  width: 10px;
  height: 2px;
  background: #bbb
  border-radius: 0%;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 1px;
Changes to skins/darkmode/css.txt.
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
  width: 4px;
  height: 4px;
  background: #bbb
}
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0px;
  width: 10px;
  height: 4px;
  background: #bbb
  border-radius: 0%;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 1px;







|


|







389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
  width: 4px;
  height: 4px;
  background: #bbb
}
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0px;
  width: 10px;
  height: 2px;
  background: #bbb
  border-radius: 0%;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 1px;
Changes to skins/eagle/css.txt.
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
  background: #fff;
}

/* closed leaf commit marker */
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0px;
  width: 10px;
  height: 4px;
  background: #fff;
  border-radius: 0%;
}

/* up arrow */
.tl-arrow.u {
  margin-top: -1px;







|


|







212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
  background: #fff;
}

/* closed leaf commit marker */
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0px;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 0%;
}

/* up arrow */
.tl-arrow.u {
  margin-top: -1px;
Changes to src/default.css.
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
  width: 4px;
  height: 4px;
  background: #000;
}
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0px;
  width: 10px;
  height: 4px;
  background: #000;
  border-radius: 0%;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 2px;







|


|







119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
  width: 4px;
  height: 4px;
  background: #000;
}
.tl-node.closed-leaf:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0px;
  width: 10px;
  height: 2px;
  background: #000;
  border-radius: 0%;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 2px;