Icons

We are using FontAwesome icons with Bootstrap colors. Icons can be used with text or title, depending on your use case. They can be animated, rotated, stacked and more.

Example

Add: Add / (inline, e.g. in a table)
Announcement: / / /
Branch: Branch package
Browse: Browse source
Build Status: / / / / / / / /
Cloud Download: Cloud Download
Cloud Upload: Cloud Upload
Configuration: Configuration
Copy: Copy
Delete: Delete / (inline, e.g. in a table)
Disable:
Direction: / / /
Download: Download / (inline, e.g. in a table)
Edit: Edit / (inline, e.g. in a table)
Email:
Enable:
Files: Files
Home:
Image: Image
Link: Links to project123
List:
Monitor:
Package: My package 123
Project: My project 123
Refresh: (rotates on click)
Repeat: Trigger Rebuild (indicates that an action was already done, but can be repeated)
RSS Feed:
Search:
Show:
Spinner: (loads on click) / (Visually indicate that the WebUI is waiting for an update from the backend)
Submit: Submit package
Upload: Upload

Code

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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
`Add`:
%i.fas.fa-plus-circle.text-primary
Add
\/
%i.fas.fa-plus-circle.text-primary{ title: 'Add' }
*(inline, e.g. in a table)*
%br

`Announcement`:
%i.fa.fa-exclamation-circle.text-danger{ title: 'Alert' }
\/
%i.fa.fa-exclamation-triangle.text-warning{ title: 'Warning' }
\/
%i.fa.fa-check-circle.text-success{ title: 'Success' }
\/
%i.fa.fa-info-circle.text-info{ title: 'Info' }
%br

`Branch`:
%i.fas.fa-code-branch.text-primary
Branch package
%br

`Browse`:
%i.fas.fa-folder-open.text-warning
Browse source
%br

`Build Status`:
%i.fas.fa-lock{ title: 'Blocked' }
\/
%i.far.fa-calendar-alt{ title: 'Scheduling' }
\/
%i.fas.fa-cog{ title: 'Building' }
\/
%i.fas.fa-check{ title: 'Finished' }
\/
%i.fas.fa-exclamation-triangle{ title: 'Broken' }
\/
%i.fas.fa-dolly-flatbed{ title: 'Unpublished' }
\/
%i.fas.fa-truck-loading{ title: 'Publishing' }
\/
%i.fas.fa-truck{ title: 'Published' }
\/
%br

`Cloud Download`:
%i.fas.fa-cloud-download-alt.text-secondary
Cloud Download
%br

`Cloud Upload`:
%i.fas.fa-cloud-upload-alt.text-secondary
Cloud Upload
%br

`Configuration`:
%i.fas.fa-cogs
Configuration
%br

`Copy`:
%i.fas.fa-clone
Copy
%br

`Delete`:
%i.fas.fa-times-circle.text-danger
Delete
\/
%i.fas.fa-times-circle.text-danger{ title: 'Delete' }
*(inline, e.g. in a table)*
%br

`Disable`:
%i.fas.fa-toggle-off{ title: 'Disable' }
%br

`Direction`:
%i.fas.fa-chevron-down
\/
%i.fas.fa-chevron-left
\/
%i.fas.fa-chevron-right
\/
%i.fas.fa-chevron-up
%br

`Download`:
%i.fas.fa-download.text-secondary
Download
\/
%i.fas.fa-download.text-secondary{ title: 'Download' }
*(inline, e.g. in a table)*
%br

`Edit`:
%i.fas.fa-edit.text-secondary
Edit
\/
%i.fas.fa-edit.text-secondary{ title: 'Edit' }
*(inline, e.g. in a table)*
%br

`Email`:
%i.far.fa-envelope{ title: 'Send email to blabla' }
%br

`Enable`:
%i.fas.fa-toggle-on{ title: 'Enable' }
%br

`Files`:
%i.fas.fa-copy.text-gray-550
Files
%br

`Home`:
%i.fas.fa-home{ title: 'Home' }
%br

`Image`:
%i.fas.fa-compact-disc.text-secondary
Image
%br

`Link`:
%i.fas.fa-link
Links to project123
%br

`List`:
%i.fas.fa-list{ title: 'List projects' }
%br

`Monitor`:
%i.fas.fa-heartbeat.text-danger{ title: 'Monitor' }
%br

`Package`:
%i.fa.fa-archive.text-warning
My package 123
%br

`Project`:
%i.fa.fa-cubes.text-secondary
My project 123
%br

`Refresh`:
%i.fas.fa-sync-alt.rotate-on-click{ title: 'Refresh' }
*(rotates on click)*
:javascript
  // Example to show how this can be achieved
  $('i.rotate-on-click').click(function() {
    element = $(this);
    element.addClass('fa-spin');
    // Sleep for 1.5 second... this would be your AJAX call or whatever needs to be done in the refresh
    setTimeout(function() {
      element.removeClass('fa-spin');
    }, 1500);
  });
%br

`Repeat`:
%i.fas.fa-redo
Trigger Rebuild
*(indicates that an action was already done, but can be repeated)*
%br

`RSS Feed`:
%i.fa.fa-rss
%br

`Search`:
%i.fas.fa-search
%br

`Show`:
%span.fa-stack.half-font-size{ title: 'Show' }
  %i.far.fa-file.fa-stack-2x
  %i.fas.fa-search.fa-stack-1x
%br

`Spinner`:
%i.fas.fa-search.load-on-click
%i.fas.fa-spinner.fa-spin.d-none
*(loads on click)*
:javascript
  // Example to show how this can be achieved
  $('i.load-on-click').click(function() {
    element = $(this);
    element.addClass('d-none');
    element.next('i.fas.fa-spin').removeClass('d-none');
    // Sleep for 1.5 second... this would be your AJAX call or whatever needs to be done
    setTimeout(function() {
      element.removeClass('d-none');
      element.next('i.fas.fa-spin').addClass('d-none');
    }, 1500);
  });
\/
%i.fas.fa-spinner.fa-spin
*(Visually indicate that the WebUI is waiting for an update from the backend)*
%br

`Submit`:
%i.fas.fa-share-square.text-warning
Submit package
%br

`Upload`:
%i.fas.fa-upload.text-secondary
Upload
%br