File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -81,14 +81,17 @@ def connection_info():
81
81
return '\n ' .join (result )
82
82
83
83
84
- # Note: Version 3.2 icons, not the later 4.0 ones.
84
+ # Note: Version 3.2 and 4.x icons
85
85
# http://fontawesome.io/3.2.1/icons/
86
+ # http://fontawesome.io/
87
+ # the `fa fa-xxx` part targets font-awesome 4, (IPython 3.x)
88
+ # the icon-xxx targets font awesome 3.21 (IPython 2.x)
86
89
_FONT_AWESOME_CLASSES = {
87
- 'home' : 'icon-home' ,
88
- 'back' : 'icon-arrow-left' ,
89
- 'forward' : 'icon-arrow-right' ,
90
- 'zoom_to_rect' : 'icon-check-empty' ,
91
- 'move' : 'icon-move' ,
90
+ 'home' : 'fa fa-home icon-home' ,
91
+ 'back' : 'fa fa-arrow-left icon-arrow-left' ,
92
+ 'forward' : 'fa fa--arrow-right icon-arrow-right' ,
93
+ 'zoom_to_rect' : 'fa fa-square-o icon-check-empty' ,
94
+ 'move' : 'fa fa-arrows icon-move' ,
92
95
None : None
93
96
}
94
97
You can’t perform that action at this time.
0 commit comments