Sfoglia il codice sorgente

added some missing font awesome icons

Skylsmoi 6 anni fa
parent
commit
1f34921c49

+ 2 - 2
tracim/models/applications.py Vedi File

41
 calendar = Application(
41
 calendar = Application(
42
     label='Calendar',
42
     label='Calendar',
43
     slug='calendar',
43
     slug='calendar',
44
-    fa_icon='calendar-alt',
44
+    fa_icon='calendar',
45
     hexcolor='#757575',
45
     hexcolor='#757575',
46
     is_active=True,
46
     is_active=True,
47
     config={},
47
     config={},
72
 markdownpluspage = Application(
72
 markdownpluspage = Application(
73
     label='Markdown Plus Documents',  # TODO - G.M - 24-05-2018 - Check label
73
     label='Markdown Plus Documents',  # TODO - G.M - 24-05-2018 - Check label
74
     slug='contents/markdownpluspage',
74
     slug='contents/markdownpluspage',
75
-    fa_icon='file-code',
75
+    fa_icon='file-code-o',
76
     hexcolor='#f12d2d',
76
     hexcolor='#f12d2d',
77
     is_active=True,
77
     is_active=True,
78
     config={},
78
     config={},

+ 2 - 2
tracim/models/workspace_menu_entries.py Vedi File

29
   label='Dashboard',
29
   label='Dashboard',
30
   route='/#/workspaces/{workspace_id}/dashboard',
30
   route='/#/workspaces/{workspace_id}/dashboard',
31
   hexcolor='#252525',
31
   hexcolor='#252525',
32
-  fa_icon="",
32
+  fa_icon="signal",
33
 )
33
 )
34
 all_content_menu_entry = WorkspaceMenuEntry(
34
 all_content_menu_entry = WorkspaceMenuEntry(
35
   slug="contents/all",
35
   slug="contents/all",
36
   label="All Contents",
36
   label="All Contents",
37
   route="/#/workspaces/{workspace_id}/contents",
37
   route="/#/workspaces/{workspace_id}/contents",
38
   hexcolor="#fdfdfd",
38
   hexcolor="#fdfdfd",
39
-  fa_icon="",
39
+  fa_icon="th",
40
 )
40
 )
41
 
41
 
42
 # TODO - G.M - 08-06-2018 - This is hardcoded default menu entry,
42
 # TODO - G.M - 08-06-2018 - This is hardcoded default menu entry,