-
Notifications
You must be signed in to change notification settings - Fork 98
/
icons-new.html
55 lines (55 loc) · 1.39 KB
/
icons-new.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>New Bootstrap Icons</title>
<base href="https://bb-trunk.egroupware.de/egw/">
</head>
<body>
<table>
<h1>New <a href="https://icons.getbootstrap.com/" target="_blank">Bootstrap</a> Icons</h1>
<tr>
<th>Name</th>
<th>Old</th>
<th>New</th>
<th>Alternatives / Notes</th>
</tr>
<tr>
<td>save</td>
<td><img src="api/templates/default/images/save.svg"/></td>
<td><img src="node_modules/bootstrap-icons/icons/floppy.svg" title="floppy"/></td>
<td>braucht neues Icon, evtl. Kombi aus apply & cancel (im unteren rechten Viertel)</td>
</tr>
<tr>
<td>apply</td>
<td><img src="api/templates/default/images/apply.svg"/></td>
<td><img src="node_modules/bootstrap-icons/icons/floppy.svg" title="floppy"/></td>
<td></td>
</tr>
<tr>
<td>cancel</td>
<td><img src="api/templates/default/images/cancel.svg"/></td>
<td><img src="node_modules/bootstrap-icons/icons/x-square.svg" title="x-square"/></td>
<td></td>
</tr>
<tr>
<td>apply</td>
<td><img src="api/templates/default/images/delete.svg"/></td>
<td><img src="node_modules/bootstrap-icons/icons/trash.svg" title="trash"/></td>
<td></td>
</tr>
</table>
<style>
td > img {
text-align: center;
height: 40px;
}
th {
text-align: left;
}
td, th {
padding: 5px;
}
</style>
</body>
</html>