Commit 6324f904 by Spencer Alger

switched out the border-radius powered query_color_dot's with font-awesome icons…

switched out the border-radius powered query_color_dot's with font-awesome icons to maintain IE compatibility
parent 7f745428
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment