diff options
| author | Mark Otto <[email protected]> | 2013-11-29 22:03:49 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-11-29 22:03:49 -0800 |
| commit | bf9f39270c7c6d50b0355a0b1a5e470c0820af07 (patch) | |
| tree | 3e0f4ec82af91a2a4253875ed657da9a93436d5f /dist/css/bootstrap.css | |
| parent | 36b82c37ecbedd13f9a2f3eca545745eb8eedf75 (diff) | |
| download | bootstrap-bf9f39270c7c6d50b0355a0b1a5e470c0820af07.tar.xz bootstrap-bf9f39270c7c6d50b0355a0b1a5e470c0820af07.zip | |
Fixes #11425: Use margin instead of padding on .modal-dialog to enable click-thru to .modal-backdrop
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 6d3a9e1e9..7d9961d3c 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5909,7 +5909,7 @@ button.close { position: relative; z-index: 1050; width: auto; - padding: 10px; + margin: 10px; margin-right: auto; margin-left: auto; } @@ -6009,8 +6009,8 @@ button.close { @media screen and (min-width: 768px) { .modal-dialog { width: 600px; - padding-top: 30px; - padding-bottom: 30px; + margin-top: 30px; + margin-bottom: 30px; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); |
