Display action column buttons on single line

Fixed actions column buttons to be displayed on a single line by
setting the td.actions_column width to 1em so the column dynamically
adjust, but by setting width to 1em (vs 0) stops tables with less
columns(Host Aggregates for example) having their actions column
expand overally wide, and by changing td.actions_column .btn-group
display to inline-flex.

Change-Id: I7dcb338f9f82e4b6eb88894068a9c4fb9879cf80
Closes-Bug: #1349615
This commit is contained in:
Aaron Sahlin 2014-08-06 14:25:48 -05:00
parent 8c7bb886a0
commit c455113791
1 changed files with 6 additions and 2 deletions

View File

@ -951,7 +951,7 @@ td.select {
white-space: nowrap;
padding: 10px;
position: relative;
width: 200px;
width: 1em;
background-clip: padding-box;
}
@ -961,7 +961,11 @@ form.actions_column {
}
.actions_column .btn-group {
display: inline-block;
display: inline-flex;
display: -ms-inline-flexbox;
-ms-flex-direction: row;
display: -webkit-inline-flex;
display: -moz-inline-flex;
}
.actions_column .row_actions a,