1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 16:50:00 +02:00

Extract $modal-{header,footer}-border-width variables

[skip sauce]
[skip validator]
This commit is contained in:
Chris Rebert
2016-02-15 23:35:57 -08:00
parent c7be6883ae
commit ece0775bee
2 changed files with 4 additions and 2 deletions

View File

@@ -74,7 +74,7 @@
// Top section of the modal w/ title and dismiss
.modal-header {
padding: $modal-title-padding;
border-bottom: 1px solid $modal-header-border-color;
border-bottom: $modal-header-border-width solid $modal-header-border-color;
@include clearfix;
}
// Close icon
@@ -99,7 +99,7 @@
.modal-footer {
padding: $modal-inner-padding;
text-align: right; // right align buttons
border-top: 1px solid $modal-footer-border-color;
border-top: $modal-footer-border-width solid $modal-footer-border-color;
@include clearfix(); // clear it in case folks use .pull-* classes on buttons
}