Merge pull request #259 from YunoHost/fix-inline-buttons-responsiveness

Fix inline buttons responsiveness on migration screen
This commit is contained in:
Alexandre Aubin 2019-09-13 03:01:19 +02:00 committed by GitHub
commit 496ede7fb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -810,3 +810,19 @@ input[type='radio'].nice-radio {
margin: 1%;
}
}
/* Inline button in panel headers or in list group items */
.list-group-item > .btn.pull-right {
line-height: 1em;
margin-top: -2px;
}
@media screen and (max-width: @screen-xs-min) {
.btn.pull-right, .btn-toolbar.pull-right, .btn-toolbar.pull-right > .btn {
margin: 0;
margin-top: 5px;
display: block;
float: none !important;
}
}