@@ -12,86 +12,79 @@ subtitle: Colors and icons used in folder and file comparison views
1212
1313Folders are shown using different colors to quickly visualize the file comparison results.
1414
15- <div class =" table-wrapper " >
16- <table class="alt">
17- <thead>
18- <tr>
19- <th>Folder</th>
20- <th>Description</th>
21- </tr>
22- </thead>
23- <tbody>
24- <tr>
25- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-000.png"></td>
26- <td>Matched folder (all contained files are the same on the other side)</td>
27- </tr>
28- <tr>
29- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-001.png"></td>
30- <td>Folder contains only files older than the other side</td>
31- </tr>
32- <tr>
33- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-010.png"></td>
34- <td>Folder contains only modified files</td>
35- </tr>
36- <tr>
37- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-011.png"></td>
38- <td>Folder contains only modified files and files older than the other side</td>
39- </tr>
40- <tr>
41- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-100.png"></td>
42- <td>Folder contains only files not present on the other side (so-called orphan folder)</td>
43- </tr>
44- <tr>
45- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-101.png"></td>
46- <td>Folder contains files not present on the other side and files older than the other side</td>
47- </tr>
48- <tr>
49- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-110.png"></td>
50- <td>Folder contains modified files and files not present on the other side</td>
51- </tr>
52- <tr>
53- <td><img class="folder-legend" src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-999.png"></td>
54- <td>Folder matches <a href="fileFilters.html#show_filtered_files">file filters</a> or is empty and the 'Empty folders' setting is on</td>
55- </tr>
56- </tbody>
57- </table>
15+ <div class =" folder-legend-grid " >
16+ <div class =" folder-legend-card " >
17+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-000.png" alt="Matched folder">
18+ <strong>Matched</strong>
19+ <span>All files identical on both sides</span>
20+ </div >
21+ <div class =" folder-legend-card " >
22+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-001.png" alt="Has older files">
23+ <strong>Has older</strong>
24+ <span>Contains files older than the other side</span>
25+ </div >
26+ <div class =" folder-legend-card " >
27+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-010.png" alt="Modified files">
28+ <strong>Modified</strong>
29+ <span>Contains modified files</span>
30+ </div >
31+ <div class =" folder-legend-card " >
32+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-011.png" alt="Modified and older files">
33+ <strong>Modified + older</strong>
34+ <span>Contains modified files and files older than the other side</span>
35+ </div >
36+ <div class =" folder-legend-card " >
37+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-100.png" alt="Orphan folder">
38+ <strong>Orphan</strong>
39+ <span>Files only on one side</span>
40+ </div >
41+ <div class =" folder-legend-card " >
42+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-101.png" alt="Orphan and older files">
43+ <strong>Orphan + older</strong>
44+ <span>Orphan files and files older than the other side</span>
45+ </div >
46+ <div class =" folder-legend-card " >
47+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-110.png" alt="Orphan and modified files">
48+ <strong>Orphan + modified</strong>
49+ <span>Orphan files and modified files</span>
50+ </div >
51+ <div class =" folder-legend-card " >
52+ <img src="{{ site.prefixDir }}img/screenshots/folder/view/folders/folder-999.png" alt="Filtered or empty folder">
53+ <strong>Filtered / Empty</strong>
54+ <span>Matches active <a href="fileFilters.html#show_filtered_files">file filters</a> or is empty</span>
55+ </div >
5856</div >
5957
6058# [ File Colors] ( #file_colors )
6159
6260Line colors in the File Differ View are based on differences found.
6361
64- <div class =" table-wrapper " >
65- <table class="alt">
66- <thead>
67- <tr>
68- <th>Color</th>
69- <th>Description</th>
70- </tr>
71- </thead>
72- <tbody>
73- <tr>
74- <td class="file-legend-same"></td>
75- <td>Text content on left and right is the same</td>
76- </tr>
77- <tr>
78- <td class="file-legend-different"></td>
79- <td>Text content present on the left differs from text content present on the right</td>
80- </tr>
81- <tr>
82- <td class="file-legend-missing-left"></td>
83- <td>Text content is present only on the right; on the left the line is missing</td>
84- </tr>
85- <tr>
86- <td class="file-legend-missing-right"></td>
87- <td>Text content is present only on the left; on the right the line is missing</td>
88- </tr>
89- <tr>
90- <td class="file-legend-merged"></td>
91- <td>Text content has been copied from the other side; this marks the document as edited and it can be saved</td>
92- </tr>
93- </tbody>
94- </table>
62+ <div class =" folder-legend-grid " >
63+ <div class =" folder-legend-card " >
64+ <div class="file-legend-swatch file-legend-same"></div>
65+ <strong>Same</strong>
66+ <span>Left and right content is identical</span>
67+ </div >
68+ <div class =" folder-legend-card " >
69+ <div class="file-legend-swatch file-legend-different"></div>
70+ <strong>Different</strong>
71+ <span>Left content differs from right</span>
72+ </div >
73+ <div class =" folder-legend-card " >
74+ <div class="file-legend-swatch file-legend-missing-left"></div>
75+ <strong>Missing left</strong>
76+ <span>Line present only on the right; missing on the left</span>
77+ </div >
78+ <div class =" folder-legend-card " >
79+ <div class="file-legend-swatch file-legend-missing-right"></div>
80+ <strong>Missing right</strong>
81+ <span>Line present only on the left; missing on the right</span>
82+ </div >
83+ <div class =" folder-legend-card " >
84+ <div class="file-legend-swatch file-legend-merged"></div>
85+ <strong>Merged</strong>
86+ <span>Content copied from the other side; file is marked as edited</span>
87+ </div >
9588</div >
9689
9790# [ Difference Indicator] ( #difference_indicator )
0 commit comments