]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix border radii
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Thu, 27 Feb 2020 17:34:42 +0000 (18:34 +0100)
committerXhmikosR <xhmikosr@gmail.com>
Wed, 1 Apr 2020 07:05:43 +0000 (10:05 +0300)
scss/_modal.scss

index d898a6b0ba2bce822851b0638993e5f746935a2c..49f27d304a50fe7c739b1b1b911637379e3fe8c6 100644 (file)
@@ -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;
       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);
+      }
     }
   }
 }