Merge pull request #4401 from jbudz/issues/2995

Set dashboard panel flex-basis units and display
This commit is contained in:
Jim Unger 2015-07-15 11:31:48 -05:00
commit 7239d9cafa

View file

@ -63,7 +63,7 @@ dashboard-grid {
.panel-heading {
.flex(0 0 auto);
white-space: nowrap;
display: flex;
.display(flex);
div.btn-group {
white-space: nowrap;
@ -72,8 +72,13 @@ dashboard-grid {
.panel-title {
font-size: inherit;
// flexbox fix for IE10
// http://stackoverflow.com/questions/22008135/internet-explorer-10-does-not-apply-flexbox-on-inline-elements
display: inline-block;
.ellipsis();
.flex(1 1 0);
.flex(1 1 auto);
}
a {