switched out the border-radius powered query_color_dot's with font-awesome icons to maintain IE compatibility

This commit is contained in:
Spencer Alger 2013-08-28 12:14:09 -07:00
parent 7f745428fe
commit 6324f9042e

View File

@ -301,13 +301,10 @@
};
kbn.query_color_dot = function (color, diameter) {
return '<div style="' + [
'vertical-align:middle',
'border-radius:10px',
return '<div class="icon-circle" style="' + [
'display:inline-block',
'background:' + color,
'height:' + diameter + 'px',
'width:' + diameter + 'px',
'color:' + color,
'font-size:' + diameter + 'px',
].join(';') + '"></div>';
};
}).call(this);