Merge pull request #6705 from jhamrick/celltoolbar-justify

Right-justify celltoolbar instead of reversing
This commit is contained in:
Matthias Bussonnier 2014-10-16 17:09:07 +02:00
commit 6766daa397
2 changed files with 5 additions and 6 deletions

View File

@ -11,7 +11,7 @@
height: @celltoolbar-height;
padding-right: 4px;
.hbox();
.reverse();
.end();
}
.ctb_hideshow {

View File

@ -9617,7 +9617,6 @@ p {
background: #EEE;
border-radius: 3px 3px 0px 0px;
width: 100%;
-webkit-box-pack: end;
height: 29px;
padding-right: 4px;
/* Old browsers */
@ -9641,11 +9640,11 @@ p {
/* Modern browsers */
flex: none;
/* Old browsers */
-webkit-box-direction: reverse;
-moz-box-direction: reverse;
box-direction: reverse;
-webkit-box-pack: end;
-moz-box-pack: end;
box-pack: end;
/* Modern browsers */
flex-direction: row-reverse;
justify-content: flex-end;
}
.ctb_hideshow {
display: none;