Merge branch '31727-timestamps-in-merge-request-discussion-overflow-role-badge' into 'master'

Wrap note actions below timestamp on discussions

Closes #31727 and #30984

See merge request !11062
This commit is contained in:
Annabel Dunstone Gray 2017-05-05 14:47:03 +00:00
commit f62afa01b1
1 changed files with 10 additions and 6 deletions

View File

@ -130,12 +130,6 @@ ul.notes {
}
.note-header {
padding-bottom: 8px;
padding-right: 20px;
@media (min-width: $screen-sm-min) {
padding-right: 0;
}
@media (max-width: $screen-xs-min) {
.inline {
@ -384,10 +378,15 @@ ul.notes {
.note-header {
display: flex;
justify-content: space-between;
@media (max-width: $screen-xs-max) {
flex-flow: row wrap;
}
}
.note-header-info {
min-width: 0;
padding-bottom: 5px;
}
.note-headline-light {
@ -435,6 +434,11 @@ ul.notes {
margin-left: 10px;
color: $gray-darkest;
@media (max-width: $screen-xs-max) {
float: none;
margin-left: 0;
}
.note-action-button {
margin-left: 8px;
}