diff options
| author | Jacob Thornton <[email protected]> | 2013-07-24 20:10:51 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2013-07-24 20:10:51 -0700 |
| commit | a282dba58f54cb6912e419c7d890ff86d5e68e73 (patch) | |
| tree | 5f48606afa33e534d671a758e7a8f6574448bde8 /less/modals.less | |
| parent | eaefed517a960893204cade3525bda100454e13f (diff) | |
| parent | 1f40da9676d0e29329fcf0925409a70acd02daaf (diff) | |
| download | bootstrap-a282dba58f54cb6912e419c7d890ff86d5e68e73.tar.xz bootstrap-a282dba58f54cb6912e419c7d890ff86d5e68e73.zip | |
Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wip
Diffstat (limited to 'less/modals.less')
| -rw-r--r-- | less/modals.less | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/less/modals.less b/less/modals.less index d79121097..52c1b0df8 100644 --- a/less/modals.less +++ b/less/modals.less @@ -46,10 +46,10 @@ // Actual modal .modal-content { position: relative; - background-color: #fff; - border: 1px solid #999; - border: 1px solid rgba(0,0,0,.2); - border-radius: 6px; + background-color: @modal-content-bg; + border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc) + border: 1px solid @modal-content-border-color; + border-radius: @border-radius-large; .box-shadow(0 3px 9px rgba(0,0,0,.5)); .background-clip(padding-box); // Remove focus outline from opened modal @@ -64,7 +64,7 @@ bottom: 0; left: 0; z-index: (@zindex-modal-background - 10); - background-color: #000; + background-color: @modal-backdrop-bg; // Fade for backdrop &.fade { .opacity(0); } &.fade.in { .opacity(.5); } @@ -74,7 +74,7 @@ // Top section of the modal w/ title and dismiss .modal-header { padding: @modal-title-padding; - border-bottom: 1px solid #e5e5e5; + border-bottom: 1px solid @modal-header-border-color; min-height: (@modal-title-padding + @modal-title-line-height); } // Close icon @@ -100,7 +100,7 @@ margin-top: 15px; padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding; text-align: right; // right align buttons - border-top: 1px solid #e5e5e5; + border-top: 1px solid @modal-footer-border-color; .clearfix(); // clear it in case folks use .pull-* classes on buttons // Properly space out buttons |
