Change the row-content-block menu on the commits page to a flexbox container
This commit is contained in:
parent
336d7a7992
commit
029460e258
1 changed files with 12 additions and 2 deletions
|
@ -22,6 +22,9 @@
|
|||
}
|
||||
|
||||
.row-content-block {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
margin-top: 0;
|
||||
margin-bottom: -$gl-padding;
|
||||
background-color: $gray-light;
|
||||
|
@ -82,8 +85,15 @@
|
|||
}
|
||||
|
||||
.block-controls {
|
||||
float: right;
|
||||
margin-top: -36px;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
|
||||
.control {
|
||||
float: left;
|
||||
|
|
Loading…
Reference in a new issue