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

Icon Modifiers

Rotate with fa-spin:
Rotate on click with fa-spin:

Colors

Some icons have a predefined color to better convey information. For example, icons used in the context of a destructive action, which could have severe consequences, are displayed in red to express danger.

For icons which don't have a predefined color on this page, use colors to convey information based on the context.

On dark backgrounds, we revert to white for all icons, even if they have a predefined color.

Sizes

We only use a subset of the icon sizes provided by FontAwesome

Places

These icons are for the `Places` links displayed in the left navigation sidebar.

All Projects:
Configuration:
Status Monitor:
Tasks:
Your Home Project:

Actions

These icons are for generic actions like `Create` or `Delete`. They aren't limited to the `Actions` links in the left navigation sidebar, they are used in various contexts of the application.

Branch: Branch
Browse: Browse
Change Change
Copy: Copy
Create: Create
Delete: Delete
Disable: Disable
Download: Download
Edit: Edit
Enable: Enable
Refresh: Refresh
Repeat: Repeat
Search: Search
Show: Show
Submit: Submit
Trigger: Trigger
Undo: Undo
Upload: Upload

Packages

These icons are used to represent packages and related entities.

package123
Files
Patchinfo

Create Patchinfo

Users and Groups

These icons are used to represent users, groups and related entities.

Edit

Projects

These icons are used to represent projects and related entities.

project123

Images

These icons are used to represent images and related entities.

kiwi_image123

Generic

The following icons don't belong to another category.

Announcement: / / /
Bug:
Build Status: / / / / / / / /
Cloud Download: Cloud Download
Cloud Upload: Cloud Upload
Direction: / / /
Email:
History: Job History
Home:
Link: Links to project123
List:
RSS Feed:
Spinner: (loads on click) / (Visually indicate that the WebUI is waiting for an update from the backend)


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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
%h3 Icon Modifiers

Rotate with `fa-spin`:
%i.fas.fa-sync-alt.fa-spin
%br

Rotate on click with `fa-spin`:
%i.fas.fa-sync-alt.rotate-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);
  });

%h5 Colors

%p
  Some icons have a predefined color to better convey information. For example, icons used in the context
  of a destructive action, which could have severe consequences, are displayed in red to express danger.

%p
  For icons which don't have a predefined color on this page, use
  %a{ href: 'colors.html' } colors
  to convey information based on the context.

%p
  On dark backgrounds, we revert to white for all icons, even if they have a predefined color.

%h5 Sizes

%p
  We only use a subset of the
  %a{ href: 'https://fontawesome.com/how-to-use/on-the-web/styling/sizing-icons' }icon sizes provided by FontAwesome

%i.fas.fa-headphones.fa-xs
%i.fas.fa-headphones.fa-sm
%i.fas.fa-headphones
%i.fas.fa-headphones.fa-lg
%i.fas.fa-headphones.fa-2x
%i.fas.fa-headphones.fa-3x

%h3 Places

%p These icons are for the `Places` links displayed in the left navigation sidebar.

`All Projects`:
%i.fas.fa-list
%br

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

`Status Monitor`:
%i.fas.fa-heartbeat
%br

`Tasks`:
%i.fas.fa-tasks
%br

`Your Home Project`:
%i.fas.fa-cubes

%h3 Actions

%p
  These icons are for generic actions like `Create` or `Delete`.
  They aren't limited to the `Actions` links in the left navigation sidebar, they are used in various contexts of the application.

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

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

`Change`
%i.fas.fa-exchange-alt
Change
%br

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

`Create`:
%i.fas.fa-plus-circle
Create
%br

`Delete`:
%i.fas.fa-times-circle.text-danger
Delete
%br

`Disable`:
%i.fas.fa-toggle-off.text-dark
Disable
%br

`Download`:
%i.fas.fa-download
Download
%br

`Edit`:
%i.fas.fa-edit
Edit
%br

`Enable`:
%i.fas.fa-toggle-on.text-primary
Enable
%br

`Refresh`:
%i.fas.fa-sync-alt
Refresh
%br

`Repeat`:
%i.fas.fa-redo
Repeat
%br

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

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

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

`Trigger`:
%i.fas.fa-project-diagram
Trigger
%br

`Undo`:
%i.fas.fa-undo
Undo
%br

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

%h3 Packages

%p These icons are used to represent packages and related entities.

%i.fa.fa-archive.text-warning
package123
%br

%i.fas.fa-copy.text-gray-500
Files
%br

%i.fas.fa-band-aid
Patchinfo
%br

#left-navigation-area
  %span.fa-stack
    %i.fas.fa-band-aid.fa-lg.fa-stack-1x
    %i.fas.fa-plus-circle.fa-stack-1x.top-icon
  Create Patchinfo
  %br

%h3 Users and Groups

%p These icons are used to represent users, groups and related entities.

%i.fas.fa-user-edit
Edit
%br

%h3 Projects

%p These icons are used to represent projects and related entities.

%i.fa.fa-cubes.text-secondary
project123
%br

%h3 Images

%p These icons are used to represent images and related entities.

%i.fas.fa-compact-disc.text-secondary
kiwi_image123
%br

%h3 Generic

%p The following icons don't belong to another category.

`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

`Bug`:
%i.fas.fa-bug.text-danger
%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

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

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

`History`:
%i.fas.fa-history
Job History
%br

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

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

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

`RSS Feed`:
%i.fa.fa-rss
%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