Remove top margin in modal header titles

This commit is contained in:
Lukas Eipert 2019-01-02 21:42:55 +01:00
parent 6a8b89d908
commit 47b57de899
No known key found for this signature in database
GPG key ID: 148BEA37CB35B2AC
3 changed files with 19 additions and 5 deletions

View file

@ -70,6 +70,17 @@ h6,
margin-bottom: 10px;
}
/* Our adjustments to hx & .hx above add unnecessary margins to modal-title
and page-title in modals, so we set them to 0 in order to have properly
formatted modal headers. */
.modal-header {
.modal-title,
.page-title {
margin-top: 0;
margin-bottom: 0;
}
}
h5,
.h5 {
font-size: $gl-font-size;
@ -142,7 +153,9 @@ table {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
.d#{$infix}-table-header-group { display: table-header-group !important; }
.d#{$infix}-table-header-group {
display: table-header-group !important;
}
}
}

View file

@ -29,10 +29,6 @@
padding-right: 28px;
}
}
.page-title {
margin-top: 0;
}
}
.modal-body {

View file

@ -0,0 +1,5 @@
---
title: Remove top margin in modal header titles
merge_request: 24108
author:
type: fixed