Fossil

Check-in [2c8bff0b]
Login

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

Overview
Comment:Fixes to the "eagle" built-in CSS so that trunk backgrounds look right in the Modern View.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2c8bff0b2bab67979a48c0b8907862d58bbdf596c9175047380998fb100982f3
User & Date: drh 2017-12-15 01:54:51.777
Original Comment: Fixes to the "eagle" scan CSS so that trunk backgrounds look right in the Modern View.
Context
2017-12-15
18:27
Remove pointless code that initializes a BSS data structure to zeros, even though it is already all-zero. This avoids a compiler warning in GCC7. ... (check-in: 5419e7fc user: drh tags: trunk)
01:54
Fixes to the "eagle" built-in CSS so that trunk backgrounds look right in the Modern View. ... (check-in: 2c8bff0b user: drh tags: trunk)
2017-12-14
18:03
Fix harmless coding style issues. ... (check-in: dc7d0a2e user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to skins/eagle/css.txt.
162
163
164
165
166
167
168

169
170
171
172
173
174
175
176

/* the format for the timeline data table */
table.timelineTable {
  cellspacing: 0;
  border: 0;
  cellpadding: 0;
  font-family: "courier new";

  border-collapse: collapse;
}

tr.timelineSelected {
  background-color: #7EA2D9;
}

/* commit node */







>
|







162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177

/* the format for the timeline data table */
table.timelineTable {
  cellspacing: 0;
  border: 0;
  cellpadding: 0;
  font-family: "courier new";
  border-spacing: 0px 2px;
  // border-collapse: collapse;
}

tr.timelineSelected {
  background-color: #7EA2D9;
}

/* commit node */
331
332
333
334
335
336
337




div.selectedText {
  background-color: #7EA2D9;
}

.statistics-report-graph-line {
  background-color: #7EA2D9;
}











>
>
>
>
332
333
334
335
336
337
338
339
340
341
342
div.selectedText {
  background-color: #7EA2D9;
}

.statistics-report-graph-line {
  background-color: #7EA2D9;
}

.timelineModernCell[id], .timelineColumnarCell[id], .timelineDetailCell[id] {
  background-color: #455978;
}