Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2020-02-27 20:34:42 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-04-01 10:05:43 +0300
commit05fb3905e696484f1c7b70b1d2160f6dd9fb4601 (patch)
tree5a2c48b306b7c8619b99a0ca88bcfd3f27da5d74 /scss/_modal.scss
parent062002d9521e2d3d77e9880f8b151bbbf05ef085 (diff)
Fix border radii
Diffstat (limited to 'scss/_modal.scss')
-rw-r--r--scss/_modal.scss10
1 files changed, 9 insertions, 1 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss
index d898a6b0ba..49f27d304a 100644
--- a/scss/_modal.scss
+++ b/scss/_modal.scss
@@ -80,7 +80,6 @@
flex-direction: column;
width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
// counteract the pointer-events: none; in the .modal-dialog
- height: 100%;
color: $modal-content-color;
pointer-events: auto;
background-color: $modal-content-bg;
@@ -215,13 +214,22 @@
margin: 0;
.modal-content {
+ height: 100%;
border: 0;
@include border-radius(0);
}
+ .modal-header {
+ @include border-radius(0);
+ }
+
.modal-body {
overflow-y: auto;
}
+
+ .modal-footer {
+ @include border-radius(0);
+ }
}
}
}