mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
style: replace broken glyphs with font-awesome (#10123)
Glyphicons stopped working recently, not sure why, but let's get rid of them and double down on font-awesome that we use a lot more in the codebase. There's only a few instances of glyphicons and they all are broken ATM. Also a few other minor style tweaks
This commit is contained in:
committed by
GitHub
parent
e49ba8f03c
commit
cf0f1d568d
@@ -127,9 +127,9 @@ describe('AdhocMetricEditPopover', () => {
|
||||
wrapper.instance().onDragDown = sinon.spy();
|
||||
wrapper.instance().forceUpdate();
|
||||
|
||||
expect(wrapper.find('i.glyphicon-resize-full')).toHaveLength(1);
|
||||
expect(wrapper.find('i.fa-expand')).toHaveLength(1);
|
||||
expect(wrapper.instance().onDragDown.calledOnce).toBe(false);
|
||||
wrapper.find('i.glyphicon-resize-full').simulate('mouseDown');
|
||||
wrapper.find('i.fa-expand').simulate('mouseDown');
|
||||
expect(wrapper.instance().onDragDown.calledOnce).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user